Skip to content

Commit

Permalink
fixing tests
Browse files Browse the repository at this point in the history
  • Loading branch information
davidsbatista committed Apr 29, 2024
1 parent db27192 commit d7f7ff7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/document_stores/test_in_memory.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ def test_from_dict(self, mock_regex):
store = InMemoryDocumentStore.from_dict(data)
mock_regex.compile.assert_called_with("custom_regex")
assert store.tokenizer
assert store.bm25_algorithm.__name__ == "BM25Plus"
assert store.bm25_algorithm == "BM25Plus"
assert store.bm25_parameters == {"key": "value"}

def test_write_documents(self, document_store):
Expand Down

0 comments on commit d7f7ff7

Please sign in to comment.