aboutsummaryrefslogtreecommitdiffstats
path: root/test/channel
diff options
context:
space:
mode:
authorPratik Naik <pratiknaik@gmail.com>2015-10-19 15:28:26 -0500
committerPratik Naik <pratiknaik@gmail.com>2015-10-19 15:28:26 -0500
commit904b83b9c3d5dc1f1ceac1552dd5b80513aa3232 (patch)
treeb5f703cddf15741701d1ba3d4b68987f085fd166 /test/channel
parenta02e5f418b437d96269f86eb993fa2b8e52ef5bb (diff)
downloadrails-904b83b9c3d5dc1f1ceac1552dd5b80513aa3232.tar.gz
rails-904b83b9c3d5dc1f1ceac1552dd5b80513aa3232.tar.bz2
rails-904b83b9c3d5dc1f1ceac1552dd5b80513aa3232.zip
Fix the error message in 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 68edb5befe..5e4e01abbf 100644
--- a/test/channel/stream_test.rb
+++ b/test/channel/stream_test.rb
@@ -70,7 +70,7 @@ class ActionCable::Channel::StreamTest < ActionCable::TestCase
EM.run_deferred_callbacks
expected = ActiveSupport::JSON.encode "identifier" => "test_channel", "type" => "confirm_subscription"
- assert_equal expected, connection.last_transmission, "Did not receive subscription confirmation within 0.1s"
+ assert_equal expected, connection.last_transmission, "Did not receive subscription confirmation"
assert_equal 1, connection.transmissions.size
EM.stop