test_runner: avoid unnecessary use of non-ASCII.
This commit is contained in:
parent
6e0308be30
commit
e62a69e7ff
|
@ -1,4 +1,3 @@
|
||||||
# -*- coding: utf-8 -*-
|
|
||||||
|
|
||||||
from twisted.trial import unittest
|
from twisted.trial import unittest
|
||||||
|
|
||||||
|
@ -399,7 +398,7 @@ class RunNode(common_util.SignalMixin, unittest.TestCase, pollmixin.PollMixin,
|
||||||
return res
|
return res
|
||||||
d.addBoth(_remove_hotline)
|
d.addBoth(_remove_hotline)
|
||||||
return d
|
return d
|
||||||
test_introducer.timeout = 480 # This hit the 120-second timeout on "François Lenny-armv5tel", then it hit a 240-second timeout on our feisty2.5 buildslave: http://allmydata.org/buildbot/builders/feisty2.5/builds/2381/steps/test/logs/test.log
|
test_introducer.timeout = 480 # This hit the 120-second timeout on "Francois Lenny-armv5tel", then it hit a 240-second timeout on our feisty2.5 buildslave: http://allmydata.org/buildbot/builders/feisty2.5/builds/2381/steps/test/logs/test.log
|
||||||
|
|
||||||
def test_client_no_noise(self):
|
def test_client_no_noise(self):
|
||||||
self.skip_if_cannot_daemonize()
|
self.skip_if_cannot_daemonize()
|
||||||
|
|
Loading…
Reference in New Issue