diff --git a/diracx-routers/tests/auth/test_standard.py b/diracx-routers/tests/auth/test_standard.py index ef03764f8..9b803e29b 100644 --- a/diracx-routers/tests/auth/test_standard.py +++ b/diracx-routers/tests/auth/test_standard.py @@ -53,6 +53,16 @@ def non_mocked_hosts(test_client) -> list[str]: return [test_client.base_url.host] +@pytest.fixture +def user_client(client_factory): + with client_factory.normal_user() as client: + yield client + + +def test_that_fails(test_client, user_client): + assert True + + @pytest.fixture async def auth_httpx_mock(httpx_mock: HTTPXMock, monkeypatch): data_dir = Path(__file__).parent.parent / "data"