From f68b0dc48d282f7abdf05e83fb3251cb09b1a26f Mon Sep 17 00:00:00 2001 From: Massimiliano Pippi Date: Thu, 30 May 2024 09:19:46 +0200 Subject: [PATCH] fix astra nightly --- integrations/astra/tests/test_document_store.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/integrations/astra/tests/test_document_store.py b/integrations/astra/tests/test_document_store.py index 72945bcb8..74e00bd51 100644 --- a/integrations/astra/tests/test_document_store.py +++ b/integrations/astra/tests/test_document_store.py @@ -21,7 +21,7 @@ def mock_auth(monkeypatch): @mock.patch("haystack_integrations.document_stores.astra.astra_client.AstraDB") -def test_init_is_lazy(_mock_client): +def test_init_is_lazy(_mock_client, mock_auth): _ = AstraDocumentStore() _mock_client.assert_not_called()