Skip to content

Commit

Permalink
Fixed typo
Browse files Browse the repository at this point in the history
  • Loading branch information
nick committed Oct 22, 2024
1 parent 87080a1 commit 639ac4e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions test/test_manual.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,12 +53,12 @@ def test_manual(self):
searchQuery = SearchQuery(bool={"must": [ {"match": {"title":"4"}}] })
search_request.query = searchQuery

res = searchApi.search(search_request)
res = searchApi.search(search_request)
pprint(res)
search_request = {"index":"movies","query":{"bool": {"must": [ {"match": {"title":"4"}}] }}}

search_request = {"index":"movies","query":{"bool": {"must": [ {"match": {"title":"4"}}] }}}
pprint(search_request)

pprint("Tests finished")

if __name__ == '__main__':
Expand Down

0 comments on commit 639ac4e

Please sign in to comment.