Skip to content

Commit dc14b4f

Browse files
committed
Relax assertions in ProcessTest to allow for resource contention
1 parent 7bb4890 commit dc14b4f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/unit/Toolkit/Core/ProcessTest.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -91,9 +91,9 @@ function (string $key, string $value) use (&$env): void {
9191
$counters = [
9292
['assertGreaterThan', 'readOperations#1', Process::class, 0],
9393
['assertGreaterThan', 'readOperations#2', Process::class, 0],
94-
['assertLessThan', 'readOperations#1', Process::class, 10],
95-
['assertLessThan', 'readOperations#2', Process::class, 10],
96-
['assertLessThan', 'readIterations', Process::class, 10],
94+
['assertLessThan', 'readOperations#1', Process::class, 50],
95+
['assertLessThan', 'readOperations#2', Process::class, 50],
96+
['assertLessThan', 'readIterations', Process::class, 50],
9797
];
9898

9999
$delayAfterEofCounters = $counters;

0 commit comments

Comments
 (0)