class Minitest::Reporters::DefaultReporter

def print_failure(test)

def print_failure(test)
  message = message_for(test)
  unless message.nil? || message.strip == ''
    puts
    puts colored_for(result(test), message)
    if @show_test_location
      location = get_source_location(test)
      puts "\n\n#{relative_path(location[0])}:#{location[1]}"
    end
  end
end