From 16a5bdaacb3bbb6af2fe01db1206d6742c19e52e Mon Sep 17 00:00:00 2001 From: Joe Dixon Date: Fri, 27 Dec 2024 20:52:18 +0000 Subject: [PATCH] fix tests (#293) --- tests/Unit/EventTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/Unit/EventTest.php b/tests/Unit/EventTest.php index d078c721..7faa109c 100644 --- a/tests/Unit/EventTest.php +++ b/tests/Unit/EventTest.php @@ -11,7 +11,7 @@ app(ServerProviderManager::class)->withPublishing(); $pubSub = Mockery::mock(PubSubProvider::class); $pubSub->shouldReceive('publish')->once() - ->with(['type' => 'message', 'application' => serialize($app), 'payload' => ['channel' => 'test-channel'], 'socket_id' => null]); + ->with(['type' => 'message', 'application' => serialize($app), 'payload' => ['channel' => 'test-channel']]); $this->app->instance(PubSubProvider::class, $pubSub);