We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6994664 commit b555fcaCopy full SHA for b555fca
tests/FunctionalResolverTest.php
@@ -119,6 +119,9 @@ public function testResolveInvalidRejects()
119
120
public function testResolveCancelledRejectsImmediately()
121
{
122
+ // max_nesting_level was set to 100 for PHP Versions < 5.4 which resulted in failing test for legacy PHP
123
+ ini_set('xdebug.max_nesting_level', 256);
124
+
125
$ex = $this->callback(function ($param) {
126
return ($param instanceof \RuntimeException && $param->getMessage() === 'DNS query for google.com has been cancelled');
127
});
0 commit comments