summaryrefslogtreecommitdiff
path: root/Lib/test/test_xmlrpc.py
diff options
context:
space:
mode:
authorChristian Heimes <christian@cheimes.de>2008-01-19 16:39:27 +0000
committerChristian Heimes <christian@cheimes.de>2008-01-19 16:39:27 +0000
commit6c29be54a5dbd97020ad14aad921cdccff41e62a (patch)
tree0dd10690c76c820b87e32ed75bed2d951ab5f8dc /Lib/test/test_xmlrpc.py
parentf60b6415e619246cd1ad46fbae6a8fbad558fd91 (diff)
downloadcpython-git-6c29be54a5dbd97020ad14aad921cdccff41e62a.tar.gz
Disabled test_xmlrpc:test_404. It's causing lots of false alarms.
I also disabled a test in test_ssl which requires network access to svn.python.org. This fixes a bug Skip has reported a while ago.
Diffstat (limited to 'Lib/test/test_xmlrpc.py')
-rw-r--r--Lib/test/test_xmlrpc.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/Lib/test/test_xmlrpc.py b/Lib/test/test_xmlrpc.py
index eb39d27759..4dd3316ffa 100644
--- a/Lib/test/test_xmlrpc.py
+++ b/Lib/test/test_xmlrpc.py
@@ -392,7 +392,8 @@ class SimpleServerTestCase(unittest.TestCase):
# protocol error; provide additional information in test output
self.fail("%s\n%s" % (e, e.headers))
- def test_404(self):
+ # [ch] The test 404 is causing lots of false alarms.
+ def XXXtest_404(self):
# send POST with httplib, it should return 404 header and
# 'Not Found' message.
conn = httplib.HTTPConnection('localhost', PORT)