tests/thread: Make sure that thread tests don't rely on floating point.

This commit is contained in:
Damien George
2016-05-31 11:54:34 +01:00
parent 5b7789d519
commit 15e68277c1
7 changed files with 7 additions and 7 deletions

View File

@@ -15,5 +15,5 @@ _thread.start_new_thread(thread_entry, ())
_thread.start_new_thread(thread_entry, ())
# wait for threads to finish
time.sleep(0.2)
time.sleep(1)
print('done')