Commit e5d9c4f2 authored by Jérome Perrin's avatar Jérome Perrin

ProcessingNodeTestCase: more verbose error message when starting webdav zserver fail

parent 8915aaf4
...@@ -154,7 +154,7 @@ class ProcessingNodeTestCase(ZopeTestCase.TestCase): ...@@ -154,7 +154,7 @@ class ProcessingNodeTestCase(ZopeTestCase.TestCase):
try: try:
_print(createZServer(log, zserver_type='webdav')) _print(createZServer(log, zserver_type='webdav'))
except RuntimeError, e: except RuntimeError, e:
ZopeTestCase._print(str(e)) ZopeTestCase._print('Could not start webdav zserver: %s\n' % e)
t = Thread(target=Lifetime.loop) t = Thread(target=Lifetime.loop)
t.setDaemon(1) t.setDaemon(1)
t.start() t.start()
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment