Commit b56c3f979fe19a0d3e47ceb55a745a7b517135c8
Exists in
master
and in
21 other branches
Merge branch 'master' into activejob
Showing
2 changed files
with
4 additions
and
1 deletions
Show diff stats
test/index_test.rb
test/suggest_test.rb
... | ... | @@ -23,7 +23,8 @@ class TestSuggest < Minitest::Test |
23 | 23 | |
24 | 24 | def test_multiple_fields |
25 | 25 | store [ |
26 | - {name: "Shark", color: "Sharp"} | |
26 | + {name: "Shark", color: "Sharp"}, | |
27 | + {name: "Shark", color: "Sharp"}, | |
27 | 28 | ] |
28 | 29 | assert_suggest_all "shar", ["shark", "sharp"] |
29 | 30 | end | ... | ... |