aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew/test/test_outdated.rb
diff options
context:
space:
mode:
authorBruce Steedman2016-10-01 09:49:06 +0100
committerBruce Steedman2016-10-01 09:49:06 +0100
commit15462cc8178aa555334d2b67a7e3b6656bd7bf70 (patch)
treea6ae718951d909b3cbcfc441f22033ac12bbdb4d /Library/Homebrew/test/test_outdated.rb
parentdf7246fdea9479d1131473b0babbecf35558dfda (diff)
downloadbrew-15462cc8178aa555334d2b67a7e3b6656bd7bf70.tar.bz2
delete verbose env vars in `brew tests`
Diffstat (limited to 'Library/Homebrew/test/test_outdated.rb')
-rw-r--r--Library/Homebrew/test/test_outdated.rb6
1 files changed, 1 insertions, 5 deletions
diff --git a/Library/Homebrew/test/test_outdated.rb b/Library/Homebrew/test/test_outdated.rb
index 8ee3844df..cc0f024c8 100644
--- a/Library/Homebrew/test/test_outdated.rb
+++ b/Library/Homebrew/test/test_outdated.rb
@@ -5,10 +5,6 @@ class IntegrationCommandTestOutdated < IntegrationCommandTestCase
setup_test_formula "testball"
(HOMEBREW_CELLAR/"testball/0.0.1/foo").mkpath
- if ARGV.verbose?
- assert_equal "testball (0.0.1) < 0.1", cmd("outdated")
- else
- assert_equal "testball", cmd("outdated")
- end
+ assert_equal "testball", cmd("outdated")
end
end