Merge branch 'tests/redis-connector' of github.com:beyondcode/laravel-websockets into tests/redis-connector

This commit is contained in:
Alex Renoki 2020-08-17 13:05:41 +03:00
commit c2cec0e5c1
3 changed files with 98 additions and 101 deletions

View File

@ -6,7 +6,6 @@ use BeyondCode\LaravelWebSockets\Tests\Mocks\Message;
use BeyondCode\LaravelWebSockets\Tests\TestCase; use BeyondCode\LaravelWebSockets\Tests\TestCase;
use BeyondCode\LaravelWebSockets\WebSockets\Exceptions\InvalidSignature; use BeyondCode\LaravelWebSockets\WebSockets\Exceptions\InvalidSignature;
class PrivateChannelReplicationTest extends TestCase class PrivateChannelReplicationTest extends TestCase
{ {
/** /**

View File

@ -8,7 +8,6 @@ use BeyondCode\LaravelWebSockets\Tests\TestCase;
use GuzzleHttp\Psr7\Request; use GuzzleHttp\Psr7\Request;
use Illuminate\Http\JsonResponse; use Illuminate\Http\JsonResponse;
use Pusher\Pusher; use Pusher\Pusher;
use Symfony\Component\HttpKernel\Exception\HttpException;
class FetchChannelsReplicationTest extends TestCase class FetchChannelsReplicationTest extends TestCase
{ {
@ -55,7 +54,6 @@ class FetchChannelsReplicationTest extends TestCase
->assertCalled('multi') ->assertCalled('multi')
->assertCalledWithArgs('hlen', ['1234:presence-channel']) ->assertCalledWithArgs('hlen', ['1234:presence-channel'])
->assertCalled('exec'); ->assertCalled('exec');
} }
/** @test */ /** @test */