Commit 8cbc20d4afb23066f340ed34971132dc095dee8a
1 parent
a4d01916
Exists in
master
and in
5 other branches
Fixed test warning [skip ci]
Showing
1 changed file
with
2 additions
and
0 deletions
Show diff stats
test/multi_indices_test.rb
... | ... | @@ -11,6 +11,8 @@ class MultiIndicesTest < Minitest::Test |
11 | 11 | store_names ["Product A"] |
12 | 12 | assert_equal ["Product A"], Product.search("product", index_name: Product.searchkick_index.name).map(&:name) |
13 | 13 | assert_equal ["Product A"], Product.search("product", index_name: Product).map(&:name) |
14 | + | |
15 | + Speaker.search_index.refresh | |
14 | 16 | assert_equal [], Product.search("product", index_name: Speaker.searchkick_index.name, conversions: false).map(&:name) |
15 | 17 | end |
16 | 18 | ... | ... |