aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew/test
diff options
context:
space:
mode:
authorMarkus Reiter2016-10-02 20:39:43 +0200
committerMarkus Reiter2016-10-15 17:13:38 +0200
commit198bf4d3bdeaf3047f9af80788ea18cd192541af (patch)
tree613f8ec02a60b15ff12bb981d75759d54dbbee3c /Library/Homebrew/test
parent429327cac8b75118087400fc9b5ffed4c4ce83ec (diff)
downloadbrew-198bf4d3bdeaf3047f9af80788ea18cd192541af.tar.bz2
Convert `puts_columns` to `puts Formatter.columns`.
Diffstat (limited to 'Library/Homebrew/test')
-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 c97d70285..11332e450 100644
--- a/Library/Homebrew/test/test_utils.rb
+++ b/Library/Homebrew/test/test_utils.rb
@@ -111,7 +111,7 @@ class UtilTests < Homebrew::TestCase
def test_put_columns_empty
out, err = capture_io do
- puts_columns []
+ puts Formatter.columns([])
end
assert_equal out, "\n"