cachho преди 1 година
родител
ревизия
ac08638a63
променени са 1 файла, в които са добавени 0 реда и са изтрити 2 реда
  1. 0 2
      tests/embedchain/test_embedchain.py

+ 0 - 2
tests/embedchain/test_embedchain.py

@@ -10,13 +10,11 @@ class TestChromaDbHostsLoglevel(unittest.TestCase):
     os.environ["OPENAI_API_KEY"] = "test_key"
 
     @patch("chromadb.api.models.Collection.Collection.add")
-    @patch("chromadb.api.models.Collection.Collection.get")
     @patch("embedchain.embedchain.EmbedChain.retrieve_from_database")
     @patch("embedchain.llm.base.BaseLlm.get_answer_from_llm")
     @patch("embedchain.llm.base.BaseLlm.get_llm_model_answer")
     def test_whole_app(
         self,
-        _mock_get,
         _mock_add,
         _mock_ec_retrieve_from_database,
         _mock_get_answer_from_llm,