We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3c75256 commit b553aebCopy full SHA for b553aeb
tests/index/test_index_search_meilisearch.py
@@ -530,6 +530,6 @@ def test_search_ranking_threshold(index_with_documents):
530
# No documents matched with too high of a threshold for this term
531
response = index_with_documents().search("wife", {"rankingScoreThreshold": 0.9})
532
assert len(response["hits"]) == 0
533
- # Two documents do contain the term but they only match at a lower threshold
+ # Two documents do contain the term but they only match at a lower threshold
534
response = index_with_documents().search("wife", {"rankingScoreThreshold": 0.5})
535
- assert len(response["hits"]) == 2
+ assert len(response["hits"]) == 2
0 commit comments