diff --git a/src/spectator/matchers/negatable_prefixed_match_data_value.cr b/src/spectator/matchers/negatable_prefixed_match_data_value.cr index 4278e23..f4cf4ea 100644 --- a/src/spectator/matchers/negatable_prefixed_match_data_value.cr +++ b/src/spectator/matchers/negatable_prefixed_match_data_value.cr @@ -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