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 1fb6a4b + 7539cf9 commit 84de5daCopy full SHA for 84de5da
tests/AbstractLoopTest.php
@@ -11,6 +11,8 @@ abstract class AbstractLoopTest extends TestCase
11
12
private $tickTimeout;
13
14
+ const PHP_DEFAULT_CHUNK_SIZE = 8192;
15
+
16
public function setUp()
17
{
18
// It's a timeout, don't set it too low. Travis and other CI systems are slow.
@@ -232,7 +234,7 @@ public function testRemoveReadAndWriteStreamFromLoopOnceResourceClosesOnEndOfFil
232
234
});
233
235
236
// send data and close stream
- fwrite($other, str_repeat('.', 60000));
237
+ fwrite($other, str_repeat('.', static::PHP_DEFAULT_CHUNK_SIZE));
238
$this->loop->addTimer(0.01, function () use ($other) {
239
fclose($other);
240
0 commit comments