Commit 0f36573f authored by Ezio Melotti's avatar Ezio Melotti

Use non-deprecated method in the example

parent 50dcfc5d
...@@ -816,7 +816,7 @@ Test cases ...@@ -816,7 +816,7 @@ Test cases
If only the *exception* argument is given, returns a context manager so If only the *exception* argument is given, returns a context manager so
that the code under test can be written inline rather than as a function:: that the code under test can be written inline rather than as a function::
with self.failUnlessRaises(some_error_class): with self.assertRaises(SomeException):
do_something() do_something()
.. versionchanged:: 3.1 .. versionchanged:: 3.1
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment