commit | 8fe2fa7ebae1c34950f5a372a8f095f502053618 | [log] [tgz] |
---|---|---|
author | Trent Houliston <trent@houliston.me> | Thu Aug 25 23:25:48 2016 +1000 |
committer | Trent Houliston <trent@houliston.me> | Tue Sep 13 19:58:05 2016 +1000 |
tree | 41073a1131ea75e6a4c64a2d2fb44ba81f9439aa | |
parent | 352149e8929c1a2f0b13659dd46bf636cff0eb1d [diff] [blame] |
Increase the amount of time to execute the functions to 50ms
diff --git a/tests/test_chrono.py b/tests/test_chrono.py index aa47480..1f11213 100644 --- a/tests/test_chrono.py +++ b/tests/test_chrono.py
@@ -18,8 +18,8 @@ assert diff.days == 0 assert diff.seconds == 0 - # 500 microseconds is a very long time to execute this - assert diff.microseconds < 500 + # 50 milliseconds is a very long time to execute this + assert diff.microseconds < 50000 def test_chrono_system_clock_roundtrip():