aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorMike McQuaid2016-07-29 21:58:17 -0600
committerMike McQuaid2016-07-29 21:58:17 -0600
commitbc5b9c1e976121af04f8c80dc8794af96e0a1ae5 (patch)
treef5c33ef3a668f4f28e182a10123e6d0100331753 /Library
parent81b034a577e9847b7d0db00b4f014216a4e06dae (diff)
downloadbrew-bc5b9c1e976121af04f8c80dc8794af96e0a1ae5.tar.bz2
test-bot: fix non-OS X report generation.
Diffstat (limited to 'Library')
-rw-r--r--Library/Homebrew/dev-cmd/test-bot.rb3
1 files changed, 2 insertions, 1 deletions
diff --git a/Library/Homebrew/dev-cmd/test-bot.rb b/Library/Homebrew/dev-cmd/test-bot.rb
index 52e73565f..c7309b114 100644
--- a/Library/Homebrew/dev-cmd/test-bot.rb
+++ b/Library/Homebrew/dev-cmd/test-bot.rb
@@ -40,6 +40,7 @@ require "rexml/xmldecl"
require "rexml/cdata"
require "tap"
require "development_tools"
+require "utils/bottles"
module Homebrew
BYTES_IN_1_MEGABYTE = 1024*1024
@@ -994,7 +995,7 @@ module Homebrew
tests.each do |test|
testsuite = testsuites.add_element "testsuite"
- testsuite.add_attribute "name", "brew-test-bot.#{MacOS.cat}"
+ testsuite.add_attribute "name", "brew-test-bot.#{Utils::Bottles.tag}"
testsuite.add_attribute "tests", test.steps.count
test.steps.each do |step|