From 5e1782a90c32f5a8dcf42a5f935f10163ee5270f Mon Sep 17 00:00:00 2001 From: Angela Tran Date: Thu, 30 May 2024 20:47:26 +0000 Subject: [PATCH] fix(test): use fixture that matches intent of the test --- tests/pytest/eligibility/test_views.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/tests/pytest/eligibility/test_views.py b/tests/pytest/eligibility/test_views.py index 353c99ccfa..6c05e2158f 100644 --- a/tests/pytest/eligibility/test_views.py +++ b/tests/pytest/eligibility/test_views.py @@ -230,9 +230,7 @@ def test_confirm_get_unverified(mocker, client): @pytest.mark.django_db -@pytest.mark.usefixtures( - "mocked_session_agency", "mocked_session_eligibility", "mocked_session_verifier_does_not_use_auth_verification" -) +@pytest.mark.usefixtures("mocked_session_agency", "mocked_session_eligibility", "mocked_session_verifier") def test_confirm_get_verified(client, mocked_session_update): path = reverse(ROUTE_CONFIRM) response = client.get(path)