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

Fix the error message in tests

This commit is contained in:
Pratik Naik 2015-10-19 15:28:26 -05:00
parent a02e5f418b
commit 904b83b9c3

View file

@ -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