From 37b817ed394986808d2fdb595c272ede7a67f20d Mon Sep 17 00:00:00 2001 From: Martin Afanasjew <martin@afanasjew.de> Date: Wed, 6 Apr 2016 06:35:28 +0200 Subject: [PATCH] test-bot: fix access to relocated method Fix bug introduced in a2c23dfec569c6e73d90cb20c7d4c26cced258d5. Moving this method apparently made it inaccessible from `Homebrew::Step`. --- Library/Homebrew/cmd/test-bot.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Library/Homebrew/cmd/test-bot.rb b/Library/Homebrew/cmd/test-bot.rb index 8f26352820..c14461c628 100644 --- a/Library/Homebrew/cmd/test-bot.rb +++ b/Library/Homebrew/cmd/test-bot.rb @@ -199,7 +199,7 @@ module Homebrew unless output.empty? - @output = fix_encoding!(output) + @output = Homebrew.fix_encoding!(output) puts @output if (failed? || @puts_output_on_success) && !verbose File.write(log_file_path, @output) if ARGV.include? "--keep-logs" end -- GitLab