aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew/test/dev-cmd
diff options
context:
space:
mode:
authorShaun Jackman2017-10-18 23:32:06 -0700
committerShaun Jackman2017-10-22 08:52:16 -0700
commitf9d42659ea951896733f49394a50366fb55eaafb (patch)
treeddf49eb4e7e65ff36132861679265c6bd9201d3b /Library/Homebrew/test/dev-cmd
parenta08f1c674803824e291c326adc2aca80068020e6 (diff)
downloadbrew-f9d42659ea951896733f49394a50366fb55eaafb.tar.bz2
pull: Fix pull --bottle 1234
Fix the error: Error: undefined method `casecmp' for nil:NilClass
Diffstat (limited to 'Library/Homebrew/test/dev-cmd')
-rw-r--r--Library/Homebrew/test/dev-cmd/pull_spec.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Homebrew/test/dev-cmd/pull_spec.rb b/Library/Homebrew/test/dev-cmd/pull_spec.rb
index 9815ef9a1..984ac0843 100644
--- a/Library/Homebrew/test/dev-cmd/pull_spec.rb
+++ b/Library/Homebrew/test/dev-cmd/pull_spec.rb
@@ -22,7 +22,7 @@ describe "brew pull", :integration_test do
.and output(/Current branch is new\-branch/).to_stderr
.and be_a_failure
- expect { brew "pull", "--bump", "8" }
+ expect { brew "pull", "--bump", "https://github.com/Homebrew/homebrew-core/pull/8" }
.to output(/Fetching patch/).to_stdout
.and output(/No changed formulae found to bump/).to_stderr
.and be_a_failure