remove tenant from client fixture

This commit is contained in:
Brian Rosner 2025-01-12 13:41:06 -07:00
parent 891e07bb5e
commit f3c8b4a207

View File

@ -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()