diff options
author | Victor Stinner <victor.stinner@haypocalc.com> | 2012-02-13 22:31:26 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@haypocalc.com> | 2012-02-13 22:31:26 (GMT) |
commit | 3634bfbee6efa42d4e2a19c869da39051d4e2201 (patch) | |
tree | c9e87fb7a137e7c2fda9f5a65bacc4d5b1ff7fa7 /Lib/lib2to3/tests/test_refactor.py | |
parent | 5e4d9087046b9e70b76a86b7fb3fc0ad91452abc (diff) | |
download | cpython-3634bfbee6efa42d4e2a19c869da39051d4e2201.zip cpython-3634bfbee6efa42d4e2a19c869da39051d4e2201.tar.gz cpython-3634bfbee6efa42d4e2a19c869da39051d4e2201.tar.bz2 |
lib2to3 tests: Don't use deprecated API, switch to assertRegex()
Diffstat (limited to 'Lib/lib2to3/tests/test_refactor.py')
-rw-r--r-- | Lib/lib2to3/tests/test_refactor.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/lib2to3/tests/test_refactor.py b/Lib/lib2to3/tests/test_refactor.py index 4b87ed6..8bdebc1 100644 --- a/Lib/lib2to3/tests/test_refactor.py +++ b/Lib/lib2to3/tests/test_refactor.py @@ -230,7 +230,7 @@ from __future__ import print_function""" os.sep, os.path.basename(test_file)) for message in debug_messages: if "Not writing changes" in message: - self.assertRegexpMatches(message, message_regex) + self.assertRegex(message, message_regex) break else: self.fail("%r not matched in %r" % (message_regex, debug_messages)) |