unit tests: bump up a timeout which I encountered when running on a very slow machine
This commit is contained in:
parent
e8b4f025e2
commit
7b24eebd0a
|
@ -399,6 +399,9 @@ class SystemTest(testutil.SignalMixin, unittest.TestCase):
|
|||
d.addCallback(_created_dirnode)
|
||||
|
||||
return d
|
||||
# The default 120 second timeout went off when running it under valgrind
|
||||
# on my old Windows laptop, so I'm bumping up the timeout.
|
||||
test_mutable.timeout = 240
|
||||
|
||||
def flip_bit(self, good):
|
||||
return good[:-1] + chr(ord(good[-1]) ^ 0x01)
|
||||
|
|
Loading…
Reference in New Issue