Commit 641c267037731d28d41cc252195ef1e9aa966f0a
1 parent
9c571eaf
Exists in
master
and in
18 other branches
Fixed linter errors
Showing
2 changed files
with
2 additions
and
2 deletions
Show diff stats
lib/searchkick/record_data.rb
test/multi_search_test.rb
... | ... | @@ -27,7 +27,7 @@ class MultiSearchTest < Minitest::Test |
27 | 27 | assert_equal ["abc", "abd"], products.map(&:name) |
28 | 28 | end |
29 | 29 | |
30 | - def test_error | |
30 | + def test_query_error | |
31 | 31 | products = Product.search("*", order: {bad_column: :asc}, execute: false) |
32 | 32 | Searchkick.multi_search([products]) |
33 | 33 | assert products.error | ... | ... |