diff --git a/tests/pytest/oauth/test_analytics.py b/tests/pytest/oauth/test_analytics.py index 166d1fc11c..61d1afbfa8 100644 --- a/tests/pytest/oauth/test_analytics.py +++ b/tests/pytest/oauth/test_analytics.py @@ -3,15 +3,6 @@ from benefits.oauth.analytics import OAuthEvent -@pytest.mark.django_db -def test_OAuthEvent_checks_verifier_uses_auth_verification(app_request, mocked_session_verifier_uses_auth_verification): - mocked_verifier = mocked_session_verifier_uses_auth_verification(app_request) - - OAuthEvent(app_request, "event type") - - mocked_verifier.uses_auth_verification.assert_called_once - - @pytest.mark.django_db def test_OAuthEvent_verifier_client_name_when_uses_auth_verification( app_request, mocked_session_verifier_uses_auth_verification