We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dc90a5e commit f9c24d7Copy full SHA for f9c24d7
test/unit/search_api_test.rb
@@ -36,12 +36,12 @@ class SearchAPITest < ActiveSupport::TestCase
36
@rummager_api.expects(:unified_search).with(filter_link: @manual_link, count: "1", fields: %w{title}).returns(@manual_search_response)
37
end
38
39
- should "returns search results from rummager" do
+ should "return search results from rummager" do
40
search_response = @search_api.search(@search_params)
41
assert_equal(@search_results, search_response.fetch(:results))
42
43
44
- should "returns manual from rummager" do
+ should "return manual from rummager" do
45
46
assert_equal({title: @manual_title}, search_response.fetch(:scope))
47
0 commit comments