Skip to content

Commit

Permalink
Fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
curquiza committed Jun 19, 2024
1 parent 845f005 commit b2f3968
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion spec/meilisearch/index/documents_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@
client.create_index('vector_test').await
new_index = client.index('vector_test')
new_index.add_documents(new_doc).await
expect(new_index.document(123)['_vectors']).to include(0.1)
expect(new_index.get_documents(id: 123, retrieveVector: true)['_vectors']).to include(0.1)
end
end
end
Expand Down

0 comments on commit b2f3968

Please sign in to comment.