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.
2 parents 59961cc + 8316276 commit e27cfcdCopy full SHA for e27cfcd
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