Rename StandardFormatter to DefaultFormatter

This commit is contained in:
Michael Miller 2018-09-15 10:57:49 -06:00
parent cfe1a014dd
commit a1871ca62e
2 changed files with 2 additions and 2 deletions

View file

@ -3,7 +3,7 @@ require "colorize"
module Spectator
module Formatters
class StandardFormatter < Formatter
class DefaultFormatter < Formatter
def start_suite
end

View file

@ -4,7 +4,7 @@ require "./successful_example_result"
module Spectator
class Runner
def initialize(@group : ExampleGroup,
@formatter : Formatters::Formatter = Formatters::StandardFormatter.new)
@formatter : Formatters::Formatter = Formatters::DefaultFormatter.new)
end
def run : Nil