Skip to content

Commit

Permalink
fix: video es test (#87)
Browse files Browse the repository at this point in the history
  • Loading branch information
aatmanvaidya committed Feb 21, 2024
1 parent 089412a commit 2670490
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion src/tests/test_video_es_vec.py
Original file line number Diff line number Diff line change
Expand Up @@ -98,4 +98,9 @@ def test_2_search_video_vector(self):
search_result = es.find("video", average_vector.get('vid_vec'))
print("SEARCH RESULTS \n : ")
pp.pprint(search_result)
self.assertEqual(search_result[0]['dataset'], file_name)
file_found = False
for result in search_result:
if result.get('dataset') == file_name:
file_found = True
break
self.assertTrue(file_found, f"File {file_name} not found in any search result.")

0 comments on commit 2670490

Please sign in to comment.