diff options
Diffstat (limited to 'tests/thread/thread_start2.py')
-rw-r--r-- | tests/thread/thread_start2.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/thread/thread_start2.py b/tests/thread/thread_start2.py index 2b444cc0c3..4efa808eb9 100644 --- a/tests/thread/thread_start2.py +++ b/tests/thread/thread_start2.py @@ -15,5 +15,5 @@ def thread_entry(a0, a1, a2, a3): _thread.start_new_thread(thread_entry, (10, 20), {'a2': 0, 'a3': 1}) # wait for thread to finish -time.sleep(0.2) +time.sleep(1) print('done') |