lib/pact/matchers/matchers.rb in pact-1.0.15 vs lib/pact/matchers/matchers.rb in pact-1.0.18
- old
+ new
@@ -29,10 +29,10 @@
def structure_diff expected, actual
diff expected, actual, {structure: true}
end
def regexp_diff regexp, actual, options
- if actual != nil && regexp.match(actual)
+ if actual.is_a?(String) && regexp.match(actual)
{}
else
{expected: regexp, actual: actual}
end
end