Skip to content

Commit 54e2a0b

Browse files
committed
fix test
1 parent 95dcc77 commit 54e2a0b

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

src/Servers/Reverb/Publishing/RedisPubSubProvider.php

+1
Original file line numberDiff line numberDiff line change
@@ -93,6 +93,7 @@ public function on(string $event, callable $callback): void
9393
*/
9494
public function publish(array $payload): PromiseInterface
9595
{
96+
dd($payload);
9697
return $this->publishingClient->publish($payload);
9798
}
9899
}

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)