mirror of
https://gitea.invidious.io/iv-org/shard-spectator.git
synced 2024-08-15 00:53:35 +00:00
Fix comma placement
This commit is contained in:
parent
7081c168a5
commit
aee5897922
1 changed files with 3 additions and 3 deletions
|
@ -32,13 +32,13 @@ module Spectator::Formatting::Components
|
||||||
|
|
||||||
# Writes the counts to the output.
|
# Writes the counts to the output.
|
||||||
def to_s(io)
|
def to_s(io)
|
||||||
io << @examples << " examples, " << @failures << " failures, "
|
io << @examples << " examples, " << @failures << " failures"
|
||||||
|
|
||||||
if @errors > 1
|
if @errors > 1
|
||||||
io << '(' << @errors << " errors), "
|
io << " (" << @errors << " errors)"
|
||||||
end
|
end
|
||||||
|
|
||||||
io << @pending << " pending"
|
io << ", " << @pending << " pending"
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in a new issue