diff options
author | Stefan Behnel <stefan_ml@behnel.de> | 2015-06-05 17:21:27 +0200 |
---|---|---|
committer | Stefan Behnel <stefan_ml@behnel.de> | 2015-06-05 17:21:27 +0200 |
commit | 2b59b10ba37f917ac95245b841c984e20ed4d830 (patch) | |
tree | b0b19c54efdc8b97fcfe8ae08ffcf65a0ec410f3 | |
parent | 356a03ace092d9cd8f621e8d41090a0f45c25532 (diff) | |
download | python-lxml-2b59b10ba37f917ac95245b841c984e20ed4d830.tar.gz |
make sporadic test failure less likely
-rw-r--r-- | src/lxml/tests/test_threading.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lxml/tests/test_threading.py b/src/lxml/tests/test_threading.py index 3236c77d..faf3a3b3 100644 --- a/src/lxml/tests/test_threading.py +++ b/src/lxml/tests/test_threading.py @@ -41,7 +41,7 @@ class ThreadingTestCase(HelperTestCase): started = counter['started'] + 1 counter['started'] = started if started < count + (main_func is not None): - sync.wait(2) # wait until the other threads have started up + sync.wait(4) # wait until the other threads have started up assert sync.is_set() sync.set() # all waiting => go! try: |