aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew/test/utils
diff options
context:
space:
mode:
authorBen Muschol2017-08-14 11:08:56 -0400
committerBen Muschol2017-08-14 11:08:56 -0400
commit603bdd01a81e62d6b97a5da26d75d409e839a8fa (patch)
treed534aa61e61f803c2f294d84ec3257645a191cc8 /Library/Homebrew/test/utils
parent24da1ecd3de86177f669072c542c9a01e6d6649d (diff)
downloadbrew-603bdd01a81e62d6b97a5da26d75d409e839a8fa.tar.bz2
Implement PR feedback
Diffstat (limited to 'Library/Homebrew/test/utils')
-rw-r--r--Library/Homebrew/test/utils/github_spec.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/Library/Homebrew/test/utils/github_spec.rb b/Library/Homebrew/test/utils/github_spec.rb
index 79a26083a..5c315aec4 100644
--- a/Library/Homebrew/test/utils/github_spec.rb
+++ b/Library/Homebrew/test/utils/github_spec.rb
@@ -14,8 +14,8 @@ describe GitHub do
describe "::query_string" do
it "builds a query with the given hash parameters formatted as key:value" do
- query = subject.query_string(user: "Homebrew", repo: "Brew")
- expect(query).to eq("q=user%3AHomebrew+repo%3ABrew&per_page=100")
+ query = subject.query_string(user: "Homebrew", repo: "brew")
+ expect(query).to eq("q=user%3AHomebrew+repo%3Abrew&per_page=100")
end
it "adds a variable number of top-level string parameters to the query when provided" do