]> git.rkrishnan.org Git - tahoe-lafs/tahoe-lafs.git/commitdiff
foolscap snapshot: bump some unit tests up to very high timeouts because my poor...
authorZooko O'Whielacronx <zooko@zooko.com>
Tue, 1 May 2007 04:04:26 +0000 (21:04 -0700)
committerZooko O'Whielacronx <zooko@zooko.com>
Tue, 1 May 2007 04:04:26 +0000 (21:04 -0700)
src/foolscap/foolscap/test/test_crypto.py

index acf2b8ce6d14194f68f282daa01d88a6ed0b6f94..54b6f9bf95bb8e2d4154336d4ef1916d882d3524 100644 (file)
@@ -78,7 +78,7 @@ class TestPersist(UsefulMixin, unittest.TestCase):
         d = defer.maybeDeferred(s1.stopService)
         d.addCallback(self._testPersist_1, s1, s2, t1, public_url, port)
         return d
-    testPersist.timeout = 5
+    testPersist.timeout = 10
     def _testPersist_1(self, res, s1, s2, t1, public_url, port):
         self.services.remove(s1)
         s3 = Tub(certData=s1.getCertData())
@@ -161,7 +161,7 @@ class TestListeners(UsefulMixin, unittest.TestCase):
         d.addCallback(lambda ref: ref.callRemote('add', a=2, b=2))
         d.addCallback(self._testShared_1)
         return d
-    testShared.timeout = 5
+    testShared.timeout = 10
     def _testShared_1(self, res):
         t1,t2 = self.targets
         self.failUnlessEqual(t1.calls, [(1,1)])