diff options
Diffstat (limited to 'test')
-rw-r--r-- | test/channel/stream_test.rb | 2 |
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 |