From 87f3a4fb54066c3b02ee8320e7e9b2ebc99cacab Mon Sep 17 00:00:00 2001 From: Jonathan Green Date: Mon, 29 Jan 2024 16:19:50 -0400 Subject: [PATCH] Update test --- tests/api/admin/controller/test_patron_auth.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/api/admin/controller/test_patron_auth.py b/tests/api/admin/controller/test_patron_auth.py index 05edc7ab56..b6dfb565a5 100644 --- a/tests/api/admin/controller/test_patron_auth.py +++ b/tests/api/admin/controller/test_patron_auth.py @@ -87,7 +87,7 @@ def test_patron_auth_services_get_with_no_services( assert response_data.get("patron_auth_services") == [] protocols = response_data.get("protocols") assert isinstance(protocols, list) - assert 7 == len(protocols) + assert 6 == len(protocols) assert "settings" in protocols[0] assert "library_settings" in protocols[0]