lib/matchers/boolean_matcher.riml in speckle-0.1.26 vs lib/matchers/boolean_matcher.riml in speckle-0.1.27

- old
+ new

@@ -1,7 +1,7 @@ class BooleanMatcher defm match(expected, actual) - return actual == true + return actual === true end defm failure_message_for_match(expected, actual) return "expected “#{actual}” to be true" end