From d2726092afa0875ed64bbdc2b92b1ddc65e38ba1 Mon Sep 17 00:00:00 2001 From: Christophe Haen Date: Fri, 4 Jul 2025 16:30:39 +0200 Subject: [PATCH] TEST THAT FAILS,FIX IT !! --- diracx-routers/tests/auth/test_standard.py | 10 ++++++++++ 1 file changed, 10 insertions(+) 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"