1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

Keyword arguments is not a Hash

This commit is contained in:
Akira Matsuda 2019-09-07 03:20:07 +09:00
parent 438e93f7fd
commit 9a15149dab

View file

@ -175,7 +175,7 @@ module ActionCable::StreamTests
subscribe_to connection, identifiers: { id: 1 } subscribe_to connection, identifiers: { id: 1 }
assert_called(connection.websocket, :transmit) do 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_async
wait_for_executor connection.server.worker_pool.executor wait_for_executor connection.server.worker_pool.executor
end end