remove tenant from client fixture (#22)

This commit is contained in:
Brian Rosner 2025-01-19 08:49:24 -07:00 committed by GitHub
commit 81523122ee
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

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