Commit f5f03e3d authored by Tim Graham's avatar Tim Graham
Browse files

[1.8.x] Clarified assertRaisesMessage() behavior with respect to the message.

Backport of 6bb4f073 from master
parent 386a6dc3
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1337,7 +1337,7 @@ your test suite.
            SimpleTestCase.assertRaisesMessage(expected_exception, expected_message)

    Asserts that execution of ``callable`` raises ``expected_exception`` and
    that the exception has an ``expected_message`` representation. Any other
    that ``expected_message`` is found in the exception's message. Any other
    outcome is reported as a failure. Similar to unittest's
    :meth:`~unittest.TestCase.assertRaisesRegex` with the difference that
    ``expected_message`` isn't a regular expression.