1
0
mirror of https://github.com/danog/parallel.git synced 2025-01-22 22:11:11 +01:00

Send large buffer instead of delaying

This commit is contained in:
Aaron Piotrowski 2017-06-19 11:14:38 -05:00
parent 4f7da94194
commit b536f8da56
No known key found for this signature in database
GPG Key ID: ADD1EF783EDE9EEB

View File

@ -280,9 +280,7 @@ abstract class AbstractContextTest extends TestCase {
}); });
$context->start(); $context->start();
yield $context->send(\str_pad("", 1024 * 1024, "-"));
yield new Delayed(1000);
yield $context->send(0);
}); });
} }
} }