We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f812fca commit 055b40cCopy full SHA for 055b40c
tests/Integrations/PCNTL/PCNTLTest.php
@@ -20,22 +20,6 @@ protected function ddSetUp()
20
parent::ddSetUp();
21
}
22
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
-
39
/**
40
* @dataProvider dataProviderAllScripts
41
*/
0 commit comments