test_system.py: remove the lowered (20s) timeouts, since some buildslaves require more like 30 or 40 seconds to complete the test

This commit is contained in:
Brian Warner 2007-03-08 17:30:09 -07:00
parent b9c143b0e8
commit e08308e019

View File

@ -110,7 +110,6 @@ class SystemTest(unittest.TestCase):
return d1
d.addBoth(_shutdown_extra_node)
return d
test_connections.timeout = 20
def test_upload_and_download(self):
DATA = "Some data to upload\n"
@ -132,7 +131,6 @@ class SystemTest(unittest.TestCase):
self.failUnlessEqual(data, DATA)
d.addCallback(_download_done)
return d
test_upload_and_download.timeout = 20
def test_vdrive(self):
self.data = DATA = "Some data to publish to the virtual drive\n"
@ -157,7 +155,6 @@ class SystemTest(unittest.TestCase):
d.addCallback(_get_done)
d.addCallback(self._test_web)
return d
test_vdrive.timeout = 20
def _test_web(self, res):
base = self.webish_url