summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDillon Brock <okay19@users.noreply.github.com>2017-03-05 12:27:06 -0500
committerSerhiy Storchaka <storchaka@gmail.com>2017-03-05 19:27:06 +0200
commitc6b448b36d22769c684bb3276f85c1b47d15ab63 (patch)
treee5aab1fdddb57feb3d2fdc6c90ebd8cb19144c0a
parentb4e1b92aabcd302ac54fa58cd4fee8a138dbb5aa (diff)
downloadcpython-git-c6b448b36d22769c684bb3276f85c1b47d15ab63.tar.gz
Change assertRaises to assertRaisesRegex in test_xmlrpc (#481)
-rw-r--r--Lib/test/test_xmlrpc.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/Lib/test/test_xmlrpc.py b/Lib/test/test_xmlrpc.py
index 57a1efc1fe..74a46ba883 100644
--- a/Lib/test/test_xmlrpc.py
+++ b/Lib/test/test_xmlrpc.py
@@ -412,7 +412,7 @@ class SimpleXMLRPCDispatcherTestCase(unittest.TestCase):
dispatcher = xmlrpc.server.SimpleXMLRPCDispatcher()
dispatcher.register_function(None, name='method')
- with self.assertRaises(Exception, expected_regex='method'):
+ with self.assertRaisesRegex(Exception, 'method'):
dispatcher._dispatch('method', ('param',))
def test_instance_has_no_func(self):
@@ -420,14 +420,14 @@ class SimpleXMLRPCDispatcherTestCase(unittest.TestCase):
dispatcher = xmlrpc.server.SimpleXMLRPCDispatcher()
dispatcher.register_instance(object())
- with self.assertRaises(Exception, expected_regex='method'):
+ with self.assertRaisesRegex(Exception, 'method'):
dispatcher._dispatch('method', ('param',))
def test_cannot_locate_func(self):
"""Calls a function that the dispatcher cannot locate"""
dispatcher = xmlrpc.server.SimpleXMLRPCDispatcher()
- with self.assertRaises(Exception, expected_regex='method'):
+ with self.assertRaisesRegex(Exception, 'method'):
dispatcher._dispatch('method', ('param',))