From e398a76779311bf111edc83625d80932df4ab38a Mon Sep 17 00:00:00 2001 From: sabaimran Date: Sun, 19 Nov 2023 13:14:58 -0800 Subject: [PATCH] Fix test word filter --- tests/test_word_filter.py | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/tests/test_word_filter.py b/tests/test_word_filter.py index 253caedd..ebd6cccf 100644 --- a/tests/test_word_filter.py +++ b/tests/test_word_filter.py @@ -8,17 +8,15 @@ from khoj.utils.rawconfig import Entry def test_no_word_filter(): # Arrange word_filter = WordFilter() - entries = arrange_content() q_with_no_filter = "head tail" # Act can_filter = word_filter.can_filter(q_with_no_filter) - ret_query, entry_indices = word_filter.apply(q_with_no_filter, entries) + filter_terms = word_filter.get_filter_terms(q_with_no_filter) # Assert assert can_filter == False - assert ret_query == "head tail" - assert entry_indices == {0, 1, 2, 3} + assert filter_terms == [] # ----------------------------------------------------------------------------------------------------