From 904b83b9c3d5dc1f1ceac1552dd5b80513aa3232 Mon Sep 17 00:00:00 2001 From: Pratik Naik Date: Mon, 19 Oct 2015 15:28:26 -0500 Subject: [PATCH] Fix the error message in tests --- test/channel/stream_test.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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