From e34fa6315d295bb9ef171ec361e32d2261ae7e13 Mon Sep 17 00:00:00 2001 From: ivan <79514623510@yandex.ru> Date: Fri, 4 Oct 2024 15:36:01 +0500 Subject: [PATCH] fixed mongodb address in tests --- test/test_async_repository.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/test_async_repository.py b/test/test_async_repository.py index e4aacd6..f290b01 100644 --- a/test/test_async_repository.py +++ b/test/test_async_repository.py @@ -35,7 +35,7 @@ class Meta: def database(): import asyncio - client: AsyncMongoClient = AsyncMongoClient("mongodb://root:example@0.0.0.0:27017") + client: AsyncMongoClient = AsyncMongoClient("mongodb://localhost:27017") asyncio.run(client.drop_database("db")) return client.db