From 4f802587b977563b13ecd6f1eeba3da970848ced Mon Sep 17 00:00:00 2001 From: alexjanousekGSA Date: Tue, 22 Oct 2024 12:20:35 -0400 Subject: [PATCH] Fixing linting errors --- tests/app/main/views/test_index.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/tests/app/main/views/test_index.py b/tests/app/main/views/test_index.py index 4f9ab48b9..2ea0a1d9f 100644 --- a/tests/app/main/views/test_index.py +++ b/tests/app/main/views/test_index.py @@ -132,7 +132,7 @@ def test_static_pages(client_request, mock_get_organization_by_domain, view, moc @pytest.mark.parametrize( - "endpoint, template", + ("endpoint, template"), [ ("main.guidance", "views/guidance/guidance.html"), ("main.clear_goals", "views/guidance/clear-goals.html"), @@ -151,8 +151,6 @@ def test_guidance_routes(client_request, endpoint, template): assert page.status_code == 200 - - def test_guidance_pages_link_to_service_pages_when_signed_in(client_request, mocker): mocker.patch("app.notify_client.user_api_client.UserApiClient.deactivate_user")