Increase the amount of time to execute the functions to 50ms

This commit is contained in:
Trent Houliston 2016-08-25 23:25:48 +10:00
parent 352149e892
commit 8fe2fa7eba
1 changed files with 2 additions and 2 deletions

View File

@ -18,8 +18,8 @@ def test_chrono_system_clock():
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():