Skip to content

Commit 1407b1b

Browse files
authored
Update test_search_engine.py
1 parent 53e1ce2 commit 1407b1b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/test_search_engine.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,9 +62,9 @@ def test_search_part_of_word_not_found(self, docs, word, res):
6262
Test that the search function does not return
6363
results for partial words.
6464
"""
65-
assert search(docs, word) == res, f"Expected [], but got {
65+
assert search(docs, word) == res, f"""Expected [], but got {
6666
search(docs, word)
67-
}"
67+
}"""
6868

6969
@pytest.mark.parametrize('word', ['', ' ', '\t', '\n'])
7070
def test_search_empty_word(self, word):

0 commit comments

Comments
 (0)