diff options
author | Damien George <damien.p.george@gmail.com> | 2016-05-31 11:54:34 +0100 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2016-06-28 11:28:52 +0100 |
commit | 15e68277c109d238bfb9c5bb8ab7db2f89e24c26 (patch) | |
tree | 023e40d54bf2e2f470e9f35f5b23b0af4b1586af /tests/thread/thread_exit1.py | |
parent | 5b7789d519be7251c58b68879f013d5f3bf0c950 (diff) | |
download | micropython-15e68277c109d238bfb9c5bb8ab7db2f89e24c26.tar.gz micropython-15e68277c109d238bfb9c5bb8ab7db2f89e24c26.zip |
tests/thread: Make sure that thread tests don't rely on floating point.
Diffstat (limited to 'tests/thread/thread_exit1.py')
-rw-r--r-- | tests/thread/thread_exit1.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/thread/thread_exit1.py b/tests/thread/thread_exit1.py index aa35995c13..88cdd165c7 100644 --- a/tests/thread/thread_exit1.py +++ b/tests/thread/thread_exit1.py @@ -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') |