Missing comma

This commit is contained in:
Michael Miller 2021-07-05 22:36:37 -06:00
parent 3e4079d408
commit 7081c168a5
No known key found for this signature in database
GPG key ID: F9A0C5C65B162436

View file

@ -32,7 +32,7 @@ module Spectator::Formatting::Components
# Writes the counts to the output.
def to_s(io)
io << @examples << " examples, " << @failures << " failures "
io << @examples << " examples, " << @failures << " failures, "
if @errors > 1
io << '(' << @errors << " errors), "