From fe74b0c8982043f41df596b9a6203cf03a46cb1b Mon Sep 17 00:00:00 2001 From: Steve Manuel Date: Wed, 22 May 2024 15:23:15 -0600 Subject: [PATCH] ci: bump allowed time for fast test --- examples/basic/basic.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/basic/basic.zig b/examples/basic/basic.zig index 5054122..e2664c4 100644 --- a/examples/basic/basic.zig +++ b/examples/basic/basic.zig @@ -40,7 +40,7 @@ export fn @"test"() i32 { xtp_test.assertLt("it should be fast", sec, 0.5); const ns = xtp_test.timeNs("count_vowels", "this is a test"); - xtp_test.assertLt("it should be really fast", ns, 1e5); + xtp_test.assertLt("it should be really fast", ns, 2e6); simple_group.close(); return 0;