From 231027100a6b61bf01d1d34d1d97f683585af2cb Mon Sep 17 00:00:00 2001 From: Ben Ramsey Date: Thu, 5 Dec 2019 14:42:20 -0800 Subject: [PATCH] Increase microseconds in another test to ensure enough time passes --- tests/UuidTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/UuidTest.php b/tests/UuidTest.php index 61b5949..6ea5414 100644 --- a/tests/UuidTest.php +++ b/tests/UuidTest.php @@ -870,7 +870,7 @@ class UuidTest extends TestCase $previous = $factory->uuid4(); for ($i = 0; $i < 1000; $i++) { - usleep(10); + usleep(100); $uuid = $factory->uuid4(); $this->assertGreaterThan($previous->toString(), $uuid->toString());