Fix GenericArguments#to_s

This commit is contained in:
Michael Miller 2019-11-14 18:06:20 -07:00
parent acad88204a
commit b40abe8057

View file

@ -35,7 +35,7 @@ module Spectator::Mocks
io << key
io << ": "
value.inspect(io)
io << ", " if 1 < @opts.size - 1
io << ", " if i < @opts.size - 1
end
end
end