diff options
| author | Jack Nagel | 2014-04-15 15:38:31 -0500 |
|---|---|---|
| committer | Jack Nagel | 2014-04-15 15:39:26 -0500 |
| commit | 434854cc69eaad896be5ead16f1b3340d793747a (patch) | |
| tree | 03452f089ad1846d64a08e5bd57f98c43718d1d6 /Library/Homebrew/test/test_utils.rb | |
| parent | 46a11a2b26b375ff1676b6e336cbd153c1041371 (diff) | |
| download | brew-434854cc69eaad896be5ead16f1b3340d793747a.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.rb | 6 |
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 |
