Paul Munday
Paul Munday
raises(Error, "message with (parens)") no longer fails with an exact match ```` def raise_error(): raise AssertionError("Message with (parens)") assert_that(calling(raise_error), raises(AssertionError, "Message with (parens)") ``` will fail with `Correct assertion type...
``` def raise_error(): raise AssertionError("Message with (parens)") assert_that(calling(raise_error), raises(AssertionError, "Message with (parens)") ``` will fail with `Correct assertion type raised, but the expected pattern ("Message with (parens)") not found. Exception...