1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

Merge pull request #29022 from y-yagi/allow_to_receive_arbitrary_arguments_in_aggregated_results

Allow to receive arbitrary arguments in `aggregated_results`
This commit is contained in:
Matthew Draper 2017-05-10 08:54:33 +09:30 committed by GitHub
commit 97bd56e674

View file

@ -6,7 +6,7 @@ require "shellwords"
module Minitest
class SuppressedSummaryReporter < SummaryReporter
# Disable extra failure output after a run if output is inline.
def aggregated_results
def aggregated_results(*)
super unless options[:output_inline]
end
end