From 08ad9af2ca7121e51075b9bbeca18d11d2c0f2dc Mon Sep 17 00:00:00 2001 From: Nikita Popov Date: Fri, 5 Mar 2021 16:31:24 +0100 Subject: [PATCH] Reduce date test threshold further Still seeing the occasional spurious failure. --- ext/date/tests/bug73837.phpt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext/date/tests/bug73837.phpt b/ext/date/tests/bug73837.phpt index e9deaff51f..7319a1327f 100644 --- a/ext/date/tests/bug73837.phpt +++ b/ext/date/tests/bug73837.phpt @@ -13,7 +13,7 @@ for ( $i = 0; $i < 1000; $i++ ) // For low-resolution clocks, we may construct many objects in the same tick. var_dump($n = count( $collect )); -echo $n > 500 ? "microseconds differ\n" : "microseconds do not differ enough ($n)\n"; +echo $n > 400 ? "microseconds differ\n" : "microseconds do not differ enough ($n)\n"; ?> --EXPECTF-- int(%d) -- 2.50.1