Skip to content

Commit

Permalink
bug fix for the tests
Browse files Browse the repository at this point in the history
  • Loading branch information
epugh committed Jan 3, 2024
1 parent bbfbdf1 commit 53b7ca5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/services/ratings_importer_test.rb
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ class RatingsImporterTest < ActiveSupport::TestCase
rating = Rating.find_by(doc_id: '720784-021190')
assert_nil(rating)

rating = Rating.find_by(doc_id: 'NON_EXISTANT_DOC_IDzzz')
rating = Rating.find_by(doc_id: 'NON_EXISTANT_DOC_ID')
assert_not_nil(rating)
assert_equal 'Swedish Food', rating.query.query_text
end
Expand Down

0 comments on commit 53b7ca5

Please sign in to comment.