From 940a8544486d24e69162b9ed1dcf1495ba0c4bd3 Mon Sep 17 00:00:00 2001 From: tgschultz Date: Wed, 30 May 2018 13:38:41 -0500 Subject: [PATCH] Fix MacOS CI Timer test failing...? --- std/os/time.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/std/os/time.zig b/std/os/time.zig index 9a7c682483..6b062f3f45 100644 --- a/std/os/time.zig +++ b/std/os/time.zig @@ -266,7 +266,7 @@ test "os.time.timestamp" { test "os.time.Timer" { const ns_per_ms = (ns_per_s / ms_per_s); - const margin = ns_per_ms * 50; + const margin = ns_per_ms * 150; var timer = try Timer.start(); sleep(0, 10 * ns_per_ms);