Skip to content

Commit 531fed2

Browse files
committed
updated the test_update_documents_csv function
1 parent 54565c0 commit 531fed2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/index/test_index_document_meilisearch.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -197,10 +197,10 @@ def test_add_documents_csv(empty_index, songs_csv):
197197
assert index.get_primary_key() == "id"
198198

199199

200-
def test_update_documents_csv(index_with_documents, small_movies_json_file):
200+
def test_update_documents_csv(index_with_documents, songs_csv):
201201
"""Tests updating a single document with csv string."""
202202
index = index_with_documents()
203-
response = index.update_documents_csv(small_movies_json_file)
203+
response = index.update_documents_csv(songs_csv)
204204
assert isinstance(response, TaskInfo)
205205
assert response.task_uid is not None
206206
task = index.wait_for_task(response.task_uid)

0 commit comments

Comments
 (0)