From 66ffc46aba1b45366850d42a50c723dfb732f0ae Mon Sep 17 00:00:00 2001 From: Jack Nagel Date: Thu, 12 Jun 2014 22:05:45 -0500 Subject: [PATCH] Use assert_silent --- Library/Homebrew/test/test_utils.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Library/Homebrew/test/test_utils.rb b/Library/Homebrew/test/test_utils.rb index 93ba4ebb50..4a4d960768 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