# File lib/rspec/retry/formatter.rb, line 6
  def initialize(output)
    super(output)
    @tries = Hash.new { |h, k| h[k] = { successes: 0, tries: 0 } }
  end