From 434854cc69eaad896be5ead16f1b3340d793747a Mon Sep 17 00:00:00 2001 From: Jack Nagel Date: Tue, 15 Apr 2014 15:38:31 -0500 Subject: [PATCH] Don't use assert_nothing_raised --- Library/Homebrew/test/test_utils.rb | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/Library/Homebrew/test/test_utils.rb b/Library/Homebrew/test/test_utils.rb index c6989b3184..7f4e77ba85 100644 --- a/Library/Homebrew/test/test_utils.rb +++ b/Library/Homebrew/test/test_utils.rb @@ -2,9 +2,7 @@ require 'testing_env' class UtilTests < Test::Unit::TestCase def test_put_columns_empty - assert_nothing_raised do - # Issue #217 put columns with new results fails. - puts_columns [] - end + # Issue #217 put columns with new results fails. + puts_columns [] end end