Skip to content

Commit 055b40c

Browse files
committed
Typo
1 parent f812fca commit 055b40c

File tree

1 file changed

+0
-16
lines changed

1 file changed

+0
-16
lines changed

Diff for: tests/Integrations/PCNTL/PCNTLTest.php

-16
Original file line numberDiff line numberDiff line change
@@ -20,22 +20,6 @@ protected function ddSetUp()
2020
parent::ddSetUp();
2121
}
2222

23-
private function retryTest(callable $testCase, ...$args)
24-
{
25-
$attempts = 0;
26-
while ($attempts < self::MAX_RETRIES) {
27-
try {
28-
$testCase(...$args);
29-
return; // Test passed, exit the loop.
30-
} catch (\Throwable $e) {
31-
$attempts++;
32-
if ($attempts >= self::MAX_RETRIES) {
33-
throw $e; // Re-throw after max retries.
34-
}
35-
}
36-
}
37-
}
38-
3923
/**
4024
* @dataProvider dataProviderAllScripts
4125
*/

0 commit comments

Comments
 (0)