From 4d80173700c7cd378c5c4c55af731d79cd6610a3 Mon Sep 17 00:00:00 2001 From: Jakub Miazek Date: Wed, 17 Apr 2024 13:04:08 +0200 Subject: [PATCH] fix mongo auth --- tests/test_routers.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/test_routers.py b/tests/test_routers.py index 1d8b1c1..f4b03c0 100644 --- a/tests/test_routers.py +++ b/tests/test_routers.py @@ -11,9 +11,9 @@ async def test_health_check(client: AsyncClient): assert response.json() == snapshot( { "version": "7.0.8", - "databases": ["admin", "config", "local"], + "databases": ["admin", "config", "farmland", "local"], "collections": { - "admin": ["system.users", "system.version"], + "admin": ["system.version", "system.users"], "config": ["system.sessions"], "local": ["startup_log"], },