We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 16579ca commit 2804b53Copy full SHA for 2804b53
services/web/server/tests/unit/with_dbs/03/test_users.py
@@ -196,7 +196,9 @@ async def test_get_profile_with_failing_db_connection(
196
197
resp = await client.get(url.path)
198
199
- await assert_status(resp, expected)
+ data, error = await assert_status(resp, expected)
200
+ assert not data
201
+ assert error["message"] == "Authentication service is temporary unavailable"
202
203
204
@pytest.mark.parametrize(
0 commit comments