aboutsummaryrefslogtreecommitdiffstats
path: root/test/channel
diff options
context:
space:
mode:
authorPratik Naik <pratiknaik@gmail.com>2015-10-16 21:13:46 -0500
committerPratik Naik <pratiknaik@gmail.com>2015-10-16 21:13:48 -0500
commit06b59451ffadd2c93c0dec9520c1664448c6cfa4 (patch)
tree9af7dcf502ac64f0c3370736bbdc95157b505ed1 /test/channel
parent84b1f0a3e622d35bf1fb1b2662bc0262a040e119 (diff)
downloadrails-06b59451ffadd2c93c0dec9520c1664448c6cfa4.tar.gz
rails-06b59451ffadd2c93c0dec9520c1664448c6cfa4.tar.bz2
rails-06b59451ffadd2c93c0dec9520c1664448c6cfa4.zip
Fix an error message in the subscription tests
Diffstat (limited to 'test/channel')
-rw-r--r--test/channel/stream_test.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/channel/stream_test.rb b/test/channel/stream_test.rb
index cd0d3d1b83..08cfef5736 100644
--- a/test/channel/stream_test.rb
+++ b/test/channel/stream_test.rb
@@ -45,7 +45,7 @@ class ActionCable::Channel::StreamTest < ActionCable::TestCase
EM::Timer.new(0.1) do
expected = ActiveSupport::JSON.encode "identifier" => "{id: 1}", "type" => "confirm_subscription"
- assert_equal expected, connection.last_transmission, "Did not receive verification confirmation within 0.1s"
+ assert_equal expected, connection.last_transmission, "Did not receive subscription confirmation within 0.1s"
EM.run_deferred_callbacks
EM.stop