diff options
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Homebrew/test/helper/integration_command_test_case.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Library/Homebrew/test/helper/integration_command_test_case.rb b/Library/Homebrew/test/helper/integration_command_test_case.rb index e894583bb..20c0fc48e 100644 --- a/Library/Homebrew/test/helper/integration_command_test_case.rb +++ b/Library/Homebrew/test/helper/integration_command_test_case.rb @@ -102,7 +102,7 @@ class IntegrationCommandTestCase < Homebrew::TestCase def cmd(*args) output = cmd_output(*args) status = $?.exitstatus - puts "\n#{output}" if status.nonzero? + puts "\n'brew #{args.join " "}' output: #{output}" if status.nonzero? assert_equal 0, status output end @@ -110,7 +110,7 @@ class IntegrationCommandTestCase < Homebrew::TestCase def cmd_fail(*args) output = cmd_output(*args) status = $?.exitstatus - $stderr.puts "\n#{output}" if status.zero? + $stderr.puts "\n'brew #{args.join " "}'" if status.zero? refute_equal 0, status output end |
