aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorJoshua McKinney2017-03-18 18:59:28 -0500
committerJoshua McKinney2017-03-19 13:14:16 -0500
commitd11e417105c04a1c21edfb4481bc26e21f1c94f9 (patch)
tree98420e7839737cc0766bbd158e6677a6823bfa55 /Library
parent3703ef1885ba4afce1ed4ae531dcb7ddc573b3c2 (diff)
downloadbrew-d11e417105c04a1c21edfb4481bc26e21f1c94f9.tar.bz2
Hide output from brew cask uninstall test
This test showed extraneous info in the test output
Diffstat (limited to 'Library')
-rw-r--r--Library/Homebrew/test/cask/cli/uninstall_spec.rb4
1 files changed, 3 insertions, 1 deletions
diff --git a/Library/Homebrew/test/cask/cli/uninstall_spec.rb b/Library/Homebrew/test/cask/cli/uninstall_spec.rb
index 714e652c7..036c47b5c 100644
--- a/Library/Homebrew/test/cask/cli/uninstall_spec.rb
+++ b/Library/Homebrew/test/cask/cli/uninstall_spec.rb
@@ -30,7 +30,9 @@ describe Hbc::CLI::Uninstall, :cask do
it "tries anyway on a non-present Cask when --force is given" do
expect {
- Hbc::CLI::Uninstall.run("local-caffeine", "--force")
+ shutup do
+ Hbc::CLI::Uninstall.run("local-caffeine", "--force")
+ end
}.not_to raise_error
end