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 59961cc commit 8316276Copy full SHA for 8316276
tests/HttpServerTest.php
@@ -404,7 +404,9 @@ public function testConstructServerWithUnlimitedMemoryLimitDoesNotLimitConcurren
404
public function testConstructServerWithMemoryLimitDoesLimitConcurrency()
405
{
406
$old = ini_get('memory_limit');
407
- ini_set('memory_limit', '100M');
+ if (@ini_set('memory_limit', '128M') === false) {
408
+ $this->markTestSkipped('Unable to change memory limit');
409
+ }
410
411
$http = new HttpServer(function () { });
412
0 commit comments