aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew/test/test_utils.rb
diff options
context:
space:
mode:
authorJack Nagel2014-04-15 15:38:31 -0500
committerJack Nagel2014-04-15 15:39:26 -0500
commitc28a5512d4dc5055a80861e49d522c81881bfe9d (patch)
tree1db9d8db3eb33908477b6ec0d786804022268e3d /Library/Homebrew/test/test_utils.rb
parenta67da2508bf4061b98b86371f910777aac363796 (diff)
downloadhomebrew-c28a5512d4dc5055a80861e49d522c81881bfe9d.tar.bz2
Don't use assert_nothing_raised
Diffstat (limited to 'Library/Homebrew/test/test_utils.rb')
-rw-r--r--Library/Homebrew/test/test_utils.rb6
1 files changed, 2 insertions, 4 deletions
diff --git a/Library/Homebrew/test/test_utils.rb b/Library/Homebrew/test/test_utils.rb
index c6989b318..7f4e77ba8 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