aboutsummaryrefslogtreecommitdiffstats
path: root/actioncable/test/channel
diff options
context:
space:
mode:
authorArun Agrawal <arunagw@gmail.com>2015-12-17 16:23:36 +0100
committerArun Agrawal <arunagw@gmail.com>2015-12-17 16:42:34 +0100
commite1459c7c86363d941191551505ad083d4335b815 (patch)
tree271617372f69e204a0c3c80467098809b8e57393 /actioncable/test/channel
parent0957c8ad6722c1a82c16f70b23fe1f7cb2607ff5 (diff)
downloadrails-e1459c7c86363d941191551505ad083d4335b815.tar.gz
rails-e1459c7c86363d941191551505ad083d4335b815.tar.bz2
rails-e1459c7c86363d941191551505ad083d4335b815.zip
Remove warnings from actioncable
Warnings coming from code and test are removed
Diffstat (limited to 'actioncable/test/channel')
-rw-r--r--actioncable/test/channel/stream_test.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/actioncable/test/channel/stream_test.rb b/actioncable/test/channel/stream_test.rb
index 5e4e01abbf..1424ded04c 100644
--- a/actioncable/test/channel/stream_test.rb
+++ b/actioncable/test/channel/stream_test.rb
@@ -45,7 +45,7 @@ class ActionCable::Channel::StreamTest < ActionCable::TestCase
connection = TestConnection.new
connection.expects(:pubsub).returns EM::Hiredis.connect.pubsub
- channel = ChatChannel.new connection, "{id: 1}", { id: 1 }
+ ChatChannel.new connection, "{id: 1}", { id: 1 }
assert_nil connection.last_transmission
EM::Timer.new(0.1) do