Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
Alice Bartlett committed Apr 9, 2015
1 parent dc90a5e commit f9c24d7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/unit/search_api_test.rb
Original file line number Diff line number Diff line change
Expand Up @@ -36,12 +36,12 @@ class SearchAPITest < ActiveSupport::TestCase
@rummager_api.expects(:unified_search).with(filter_link: @manual_link, count: "1", fields: %w{title}).returns(@manual_search_response)
end

should "returns search results from rummager" do
should "return search results from rummager" do
search_response = @search_api.search(@search_params)
assert_equal(@search_results, search_response.fetch(:results))
end

should "returns manual from rummager" do
should "return manual from rummager" do
search_response = @search_api.search(@search_params)
assert_equal({title: @manual_title}, search_response.fetch(:scope))
end
Expand Down

0 comments on commit f9c24d7

Please sign in to comment.