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():