From eaca639b6f49212cc917ce61d4ed205a1cd28bb2 Mon Sep 17 00:00:00 2001 From: Itamar Turner-Trauring Date: Mon, 30 Nov 2020 16:28:26 -0500 Subject: [PATCH] Undo changes that should probably be in a different branch. --- src/allmydata/test/common.py | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/src/allmydata/test/common.py b/src/allmydata/test/common.py index c45b0c4e9..1cf1d6428 100644 --- a/src/allmydata/test/common.py +++ b/src/allmydata/test/common.py @@ -1190,9 +1190,7 @@ class AsyncTestCase(_TestCaseMixin, TestCase): only fire if the global reactor is running. """ run_tests_with = EliotLoggedRunTest.make_factory( - AsynchronousDeferredRunTest.make_factory( - timeout=60.0, suppress_twisted_logging=False, - store_twisted_logs=False), + AsynchronousDeferredRunTest.make_factory(timeout=60.0), ) @@ -1206,9 +1204,7 @@ class AsyncBrokenTestCase(_TestCaseMixin, TestCase): pass with ``AsyncTestCase``. """ run_tests_with = EliotLoggedRunTest.make_factory( - AsynchronousDeferredRunTestForBrokenTwisted.make_factory( - timeout=60.0, suppress_twisted_logging=False, - store_twisted_logs=False), + AsynchronousDeferredRunTestForBrokenTwisted.make_factory(timeout=60.0), )