aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
Diffstat (limited to 'Library')
-rw-r--r--Library/Homebrew/cmd/test-bot.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/Library/Homebrew/cmd/test-bot.rb b/Library/Homebrew/cmd/test-bot.rb
index 4e339fe65..2a50de918 100644
--- a/Library/Homebrew/cmd/test-bot.rb
+++ b/Library/Homebrew/cmd/test-bot.rb
@@ -786,9 +786,9 @@ module Homebrew
any_errors = false
if ARGV.named.empty?
# With no arguments just build the most recent commit.
- test = Test.new('HEAD', tap)
- any_errors = !test.run
- tests << test
+ head_test = Test.new('HEAD', tap)
+ any_errors = !head_test.run
+ tests << head_test
else
ARGV.named.each do |argument|
test_error = false