aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorJack Nagel2015-05-01 00:00:55 -0400
committerJack Nagel2015-05-01 00:00:55 -0400
commitfe588311cc7894818d6a6e9a8d916d26c47a0b47 (patch)
treedc8768b3add72ee7fc855e1355cc5a81ba3020f4 /Library
parenta14085acd31b06bcac7b12c8d36b5951a2f71033 (diff)
downloadbrew-fe588311cc7894818d6a6e9a8d916d26c47a0b47.tar.bz2
Use predicate method
Diffstat (limited to 'Library')
-rw-r--r--Library/Homebrew/cmd/test-bot.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Homebrew/cmd/test-bot.rb b/Library/Homebrew/cmd/test-bot.rb
index 94fac3337..5cddf37e4 100644
--- a/Library/Homebrew/cmd/test-bot.rb
+++ b/Library/Homebrew/cmd/test-bot.rb
@@ -147,7 +147,7 @@ module Homebrew
File.write(log_file_path, @output) if ARGV.include? "--keep-logs"
end
- exit 1 if ARGV.include?("--fail-fast") && @status == :failed
+ exit 1 if ARGV.include?("--fail-fast") && failed?
end
private