aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorMike McQuaid2015-07-10 00:20:19 +0100
committerMike McQuaid2015-07-10 00:20:19 +0100
commit6bbbd2481a1497b7127a0cb21c722095aa533dfc (patch)
treeae52320ff9f9df09968229dbb2d001ab1a686be5 /Library
parent151890148c5fa5310058863db67d6b558930b69f (diff)
downloadbrew-6bbbd2481a1497b7127a0cb21c722095aa533dfc.tar.bz2
test_updater: fix pull argument ordering.
Diffstat (limited to 'Library')
-rw-r--r--Library/Homebrew/test/test_updater.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Homebrew/test/test_updater.rb b/Library/Homebrew/test/test_updater.rb
index 849095833..374910cad 100644
--- a/Library/Homebrew/test/test_updater.rb
+++ b/Library/Homebrew/test/test_updater.rb
@@ -61,7 +61,7 @@ class UpdaterTests < Homebrew::TestCase
@updater.in_repo_expect("git symbolic-ref --short HEAD", "master")
@updater.in_repo_expect("git rev-parse -q --verify HEAD", "1234abcd")
@updater.in_repo_expect("git config core.autocrlf false")
- @updater.in_repo_expect("git pull origin refs/heads/master:refs/remotes/origin/master --quiet")
+ @updater.in_repo_expect("git pull --quiet origin refs/heads/master:refs/remotes/origin/master")
@updater.in_repo_expect("git rev-parse -q --verify HEAD", "3456cdef")
@updater.pull!(:silent => true)
@report.update(@updater.report)