Fix failing tests

This commit is contained in:
Michael Miller 2019-04-06 12:48:41 -06:00
parent dd943c9046
commit 365bd1ec2f
2 changed files with 4 additions and 3 deletions

View file

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