Skip to content

Commit

Permalink
Update test
Browse files Browse the repository at this point in the history
  • Loading branch information
RuslanMelnychenko committed May 22, 2022
1 parent 99c0207 commit 5ee516a
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions tests/EmitterTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,21 +2,20 @@

namespace Tests;

use Goez\SocketIO\Emitter;
use RuslanMelnychenko\SocketIO\Emitter;
use Mockery;
use Mockery\MockInterface;
use Predis\Client;

class EmitterTest extends \PHPUnit_Framework_TestCase
{
/**
* @var MockInterface|Client
* @var MockInterface|\Redis
*/
private $mockClient;

protected function setUp()
{
$this->mockClient = Mockery::spy(Client::class);
$this->mockClient = Mockery::spy(\Redis::class);
}

protected function tearDown()
Expand Down

0 comments on commit 5ee516a

Please sign in to comment.