From 64a533bfdd786556436f80d5fe50d4e33f5e4901 Mon Sep 17 00:00:00 2001 From: Markus Reiter Date: Mon, 31 Aug 2020 02:29:54 +0200 Subject: [PATCH] Fix useless assignment. --- Library/Homebrew/.simplecov | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Library/Homebrew/.simplecov b/Library/Homebrew/.simplecov index 1b1f52138d..aa76087f47 100755 --- a/Library/Homebrew/.simplecov +++ b/Library/Homebrew/.simplecov @@ -19,7 +19,7 @@ SimpleCov.start do command_name "#{SimpleCov.command_name} (#{pid})" # be quiet, the parent process will be in charge of output and checking coverage totals - print_error_status = false + SimpleCov.print_error_status = false end if ENV["HOMEBREW_INTEGRATION_TEST"] @@ -27,7 +27,7 @@ SimpleCov.start do command_name "#{ENV["HOMEBREW_INTEGRATION_TEST"]} (#{$PROCESS_ID})" # be quiet, the parent process will be in charge of output and checking coverage totals - print_error_status = false + SimpleCov.print_error_status = false at_exit do exit_code = $ERROR_INFO.nil? ? 0 : $ERROR_INFO.status