Skip to content

Commit 2f1ca93

Browse files
committed
Work around failing test on legacy PHP 5.3
1 parent 6b1a826 commit 2f1ca93

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

tests/Client/FunctionalIntegrationTest.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -106,6 +106,9 @@ public function testPostDataReturnsData()
106106
$this->markTestSkipped('Not supported on HHVM');
107107
}
108108

109+
// max_nesting_level was set to 100 for PHP Versions < 5.4 which resulted in failing test for legacy PHP
110+
ini_set('xdebug.max_nesting_level', 256);
111+
109112
$loop = Factory::create();
110113
$client = new Client($loop);
111114

0 commit comments

Comments
 (0)