Skip to content

Commit

Permalink
missing import
Browse files Browse the repository at this point in the history
  • Loading branch information
anakin87 committed Jan 15, 2025
1 parent 1645d56 commit f5b6aa8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions integrations/weaviate/tests/test_document_store.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
#
# SPDX-License-Identifier: Apache-2.0

import base64
import os
from typing import List
from unittest.mock import MagicMock, patch
Expand All @@ -17,7 +18,7 @@
FilterDocumentsTest,
FilterDocumentsTestWithDataframe,
WriteDocumentsTest,
create_filterable_docs
create_filterable_docs,
)
from haystack.utils.auth import Secret
from numpy import array as np_array
Expand Down Expand Up @@ -97,7 +98,6 @@ def filterable_docs_with_dataframe(self) -> List[Document]:
documents[i].meta["date"] = f"{date}Z"
return documents


def assert_documents_are_equal(self, received: List[Document], expected: List[Document]):
assert len(received) == len(expected)
received = sorted(received, key=lambda doc: doc.id)
Expand Down

0 comments on commit f5b6aa8

Please sign in to comment.