From f3c8b4a207ee86dc86fa1500802789d80a46e12d Mon Sep 17 00:00:00 2001 From: Brian Rosner Date: Sun, 12 Jan 2025 13:41:06 -0700 Subject: [PATCH] remove tenant from client fixture --- tests/conftest.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/conftest.py b/tests/conftest.py index aa3fb95..b45b145 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -29,5 +29,5 @@ def tenant(app: Flask): @pytest.fixture -def client(app: Flask, tenant) -> FlaskClient: +def client(app: Flask) -> FlaskClient: return app.test_client()