diff --git a/torba/torba/testcase.py b/torba/torba/testcase.py index 5042564b4..3e5ee15c2 100644 --- a/torba/torba/testcase.py +++ b/torba/torba/testcase.py @@ -1,4 +1,3 @@ -import os import sys import logging import functools @@ -62,7 +61,7 @@ class AsyncioTestCase(unittest.TestCase): # Implementation inspired by discussion: # https://bugs.python.org/issue32972 - LOOP_SLOW_CALLBACK_DURATION = 10 if os.environ.get('CI', False) else 0.2 # dont show warning when CI runs tests + LOOP_SLOW_CALLBACK_DURATION = 0.2 maxDiff = None