From 9a15149dab2b66c3b970f5a893807d4970fae82c Mon Sep 17 00:00:00 2001 From: Akira Matsuda Date: Sat, 7 Sep 2019 03:20:07 +0900 Subject: [PATCH] Keyword arguments is not a Hash --- actioncable/test/channel/stream_test.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/actioncable/test/channel/stream_test.rb b/actioncable/test/channel/stream_test.rb index 9ad2213d47..732d533fa8 100644 --- a/actioncable/test/channel/stream_test.rb +++ b/actioncable/test/channel/stream_test.rb @@ -175,7 +175,7 @@ module ActionCable::StreamTests subscribe_to connection, identifiers: { id: 1 } assert_called(connection.websocket, :transmit) do - @server.broadcast "test_room_1", { foo: "bar" }, { coder: DummyEncoder } + @server.broadcast "test_room_1", { foo: "bar" }, coder: DummyEncoder wait_for_async wait_for_executor connection.server.worker_pool.executor end