Fix milvus test Error: 'NameError: name 'MockConfig' is not defined'

This commit is contained in:
xuqi.wxq
2023-04-17 10:17:26 +08:00
parent 6fb1369939
commit 1d4dc0c534

View File

@@ -26,7 +26,7 @@ try:
def setUp(self) -> None:
"""Set up the test environment"""
self.cfg = MockConfig()
self.cfg = mock_config()
self.memory = MilvusMemory(self.cfg)
def test_add(self) -> None: