From 8fe2fa7ebae1c34950f5a372a8f095f502053618 Mon Sep 17 00:00:00 2001 From: Trent Houliston Date: Thu, 25 Aug 2016 23:25:48 +1000 Subject: [PATCH] Increase the amount of time to execute the functions to 50ms --- tests/test_chrono.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/test_chrono.py b/tests/test_chrono.py index aa4748092..1f112131d 100644 --- a/tests/test_chrono.py +++ b/tests/test_chrono.py @@ -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():