Slightly modified TopicTest to support new broadcast params

This commit is contained in:
Konstantin Burkalev 2014-02-09 14:50:07 +04:00
parent 0b5208507f
commit 646c2e263a

View File

@ -57,7 +57,7 @@ class TopicTest extends \PHPUnit_Framework_TestCase {
$topic->add($first);
$topic->add($second);
$topic->broadcast($msg);
$topic->broadcast($msg, array(), array());
}
public function testIterator() {
@ -109,4 +109,4 @@ class TopicTest extends \PHPUnit_Framework_TestCase {
protected function newConn() {
return new WampConnection($this->getMock('\\Ratchet\\ConnectionInterface'));
}
}
}