diff options
author | Benjamin Peterson <benjamin@python.org> | 2008-06-11 02:37:01 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2008-06-11 02:37:01 (GMT) |
commit | b42dab3c6d68314448175ee95c060cdb17a90444 (patch) | |
tree | 00ab6790546b43a20a4f50556420c59627988586 /Lib/test/test_xmlrpc_net.py | |
parent | 3b409276b77de29b82ad4022468bd2b9d312f49d (diff) | |
download | cpython-b42dab3c6d68314448175ee95c060cdb17a90444.zip cpython-b42dab3c6d68314448175ee95c060cdb17a90444.tar.gz cpython-b42dab3c6d68314448175ee95c060cdb17a90444.tar.bz2 |
revert r64092 because http://xmlrpc.com is back up
Diffstat (limited to 'Lib/test/test_xmlrpc_net.py')
-rw-r--r-- | Lib/test/test_xmlrpc_net.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Lib/test/test_xmlrpc_net.py b/Lib/test/test_xmlrpc_net.py index a850ae0..f6ebbf0 100644 --- a/Lib/test/test_xmlrpc_net.py +++ b/Lib/test/test_xmlrpc_net.py @@ -10,8 +10,7 @@ import xmlrpc.client as xmlrpclib class CurrentTimeTest(unittest.TestCase): - # XXX time.xmlrpc.com seems broken which is why this is disabled - def Xtest_current_time(self): + def test_current_time(self): # Get the current time from xmlrpc.com. This code exercises # the minimal HTTP functionality in xmlrpclib. server = xmlrpclib.ServerProxy("http://time.xmlrpc.com/RPC2") |