Skip to content

Commit 16a5bda

Browse files
authored
fix tests (#293)
1 parent 9469732 commit 16a5bda

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/Unit/EventTest.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
app(ServerProviderManager::class)->withPublishing();
1212
$pubSub = Mockery::mock(PubSubProvider::class);
1313
$pubSub->shouldReceive('publish')->once()
14-
->with(['type' => 'message', 'application' => serialize($app), 'payload' => ['channel' => 'test-channel'], 'socket_id' => null]);
14+
->with(['type' => 'message', 'application' => serialize($app), 'payload' => ['channel' => 'test-channel']]);
1515

1616
$this->app->instance(PubSubProvider::class, $pubSub);
1717

0 commit comments

Comments
 (0)