Skip to content

Commit

Permalink
Fix double quoted strings without interpolation
Browse files Browse the repository at this point in the history
  • Loading branch information
ellnix committed Oct 4, 2023
1 parent 0d085b7 commit 47e8725
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions spec/meilisearch/index/settings_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -813,14 +813,14 @@ def update_synonyms(index, synonyms)
end

it 'updates dictionary' do
update_task = index.update_dictionary(["J. R. R.", "W. E. B."])
update_task = index.update_dictionary(['J. R. R.', 'W. E. B.'])
client.wait_for_task(update_task['taskUid'])

expect(index.dictionary).to contain_exactly("J. R. R.", "W. E. B.")
expect(index.dictionary).to contain_exactly('J. R. R.', 'W. E. B.')
end

it 'resets dictionary' do
update_task = index.update_dictionary(["J. R. R.", "W. E. B."])
update_task = index.update_dictionary(['J. R. R.', 'W. E. B.'])
client.wait_for_task(update_task['taskUid'])

reset_task = index.reset_dictionary
Expand Down

0 comments on commit 47e8725

Please sign in to comment.