Fix case on futureTick

This commit is contained in:
Chris Boden 2021-12-12 11:42:12 -05:00
parent c3c83ea4c0
commit 08480d1811

View File

@ -18,7 +18,7 @@ class IoServerTest extends \PHPUnit_Framework_TestCase {
protected $reactor; protected $reactor;
protected function tickLoop(LoopInterface $loop) { protected function tickLoop(LoopInterface $loop) {
$loop->futureTIck(function () use ($loop) { $loop->futureTick(function () use ($loop) {
$loop->stop(); $loop->stop();
}); });