Skip to content

Commit 9c0538a

Browse files
authored
fix: removed unused variable
1 parent 8f06c71 commit 9c0538a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/index/test_index_document_meilisearch.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ def test_add_documents_empty(empty_index):
2929
"""Tests adding empty string as documents to a clean index."""
3030
index = empty_index()
3131
with pytest.raises(Exception) as e_info:
32-
response = index.add_documents('')
32+
index.add_documents('')
3333
assert e_info.value.code == "missing_payload"
3434
assert e_info.value.type == "invalid_request"
3535
assert e_info.value.link == "https://docs.meilisearch.com/errors#missing_payload"

0 commit comments

Comments
 (0)