diff --git a/src/spectator/formatters/dots_formatter.cr b/src/spectator/formatters/dots_formatter.cr index f992ca7..e9c0dfc 100644 --- a/src/spectator/formatters/dots_formatter.cr +++ b/src/spectator/formatters/dots_formatter.cr @@ -37,22 +37,22 @@ module Spectator::Formatters extend self # Character output for a successful example. - def success(result) + def success Color.success(CHARACTERS[:success]) end # Character output for a failed example. - def failure(result) + def failure Color.failure(CHARACTERS[:failure]) end # Character output for an errored example. - def error(result) + def error Color.error(CHARACTERS[:error]) end # Character output for a pending or skipped example. - def pending(result) + def pending Color.pending(CHARACTERS[:pending]) end end