From 33b3db93fa4ae8653cd03309b3305251dc0f6e1c Mon Sep 17 00:00:00 2001 From: Andy Kuny Date: Wed, 21 Feb 2024 14:40:52 -0500 Subject: [PATCH] Remove unneeded comments --- tests/controllers/test_web.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/tests/controllers/test_web.py b/tests/controllers/test_web.py index d09b625..0f083e2 100644 --- a/tests/controllers/test_web.py +++ b/tests/controllers/test_web.py @@ -20,7 +20,6 @@ def client(app): @pytest.fixture def logged_in_client(client, app): with app.app_context(), app.test_request_context(): - # Assuming you have a User model and a user in your database user = User( "test_user", "test_user@test.org", "test_provider", "test_logout_url" ) @@ -29,7 +28,6 @@ def logged_in_client(client, app): yield client - # Log out the user at the end of the test logout_user()