diff options
author | Christian Heimes <christian@cheimes.de> | 2007-12-08 18:38:20 (GMT) |
---|---|---|
committer | Christian Heimes <christian@cheimes.de> | 2007-12-08 18:38:20 (GMT) |
commit | 0aa93cda79936564e960da85a1ad806c55e580f9 (patch) | |
tree | 706ffe70b084ad9c95b477489a7fbf8d7920fb55 /Lib/test/test_xmlrpc.py | |
parent | 9bbac5065e09bc559581205a2b0da60b15803040 (diff) | |
download | cpython-0aa93cda79936564e960da85a1ad806c55e580f9.zip cpython-0aa93cda79936564e960da85a1ad806c55e580f9.tar.gz cpython-0aa93cda79936564e960da85a1ad806c55e580f9.tar.bz2 |
Fixed two of the three failing xml rpc tests
Diffstat (limited to 'Lib/test/test_xmlrpc.py')
-rw-r--r-- | Lib/test/test_xmlrpc.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_xmlrpc.py b/Lib/test/test_xmlrpc.py index f614c76..6f78d95 100644 --- a/Lib/test/test_xmlrpc.py +++ b/Lib/test/test_xmlrpc.py @@ -424,7 +424,7 @@ class SimpleServerTestCase(unittest.TestCase): self.assertEqual(result.results[0]['faultCode'], 1) self.assertEqual(result.results[0]['faultString'], - '<type \'exceptions.Exception\'>:method "this_is_not_exists" ' + '<type \'Exception\'>:method "this_is_not_exists" ' 'is not supported') except xmlrpclib.ProtocolError as e: # ignore failures due to non-blocking socket 'unavailable' errors |