Missing space between prefix and value

This commit is contained in:
Michael Miller 2019-03-22 13:03:33 -06:00
parent c197f3236f
commit 66ac2eb080

View file

@ -25,12 +25,14 @@ module Spectator::Matchers
# Produces a stringified value.
def to_s(io)
io << prefix
io << ' '
io << @value
end
# Produces a stringified value with additional information.
def inspect(io)
io << prefix
io << ' '
@value.inspect(io)
end
end