aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew/test/test_utils.rb
diff options
context:
space:
mode:
authorJack Nagel2014-06-12 22:05:45 -0500
committerJack Nagel2014-06-18 20:34:10 -0500
commit66ffc46aba1b45366850d42a50c723dfb732f0ae (patch)
tree300f23752a492d58deee11d4253326c9c01f7c37 /Library/Homebrew/test/test_utils.rb
parent4b6abc7da2c406139279dc73221a4d331b706f9d (diff)
downloadbrew-66ffc46aba1b45366850d42a50c723dfb732f0ae.tar.bz2
Use assert_silent
Diffstat (limited to 'Library/Homebrew/test/test_utils.rb')
-rw-r--r--Library/Homebrew/test/test_utils.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Homebrew/test/test_utils.rb b/Library/Homebrew/test/test_utils.rb
index 93ba4ebb5..4a4d96076 100644
--- a/Library/Homebrew/test/test_utils.rb
+++ b/Library/Homebrew/test/test_utils.rb
@@ -3,6 +3,6 @@ require 'testing_env'
class UtilTests < Homebrew::TestCase
def test_put_columns_empty
# Issue #217 put columns with new results fails.
- puts_columns []
+ assert_silent { puts_columns [] }
end
end