aboutsummaryrefslogtreecommitdiffstats
path: root/actioncable/test/connection/multiple_identifiers_test.rb
diff options
context:
space:
mode:
authorMatthew Draper <matthew@trebex.net>2016-01-30 04:21:16 +1030
committerMatthew Draper <matthew@trebex.net>2016-01-30 04:21:16 +1030
commit703ddadafee29c86ca5be499a80802fbea70a64f (patch)
treefd7558a9a27970c7d494a6768bac25361a808cd6 /actioncable/test/connection/multiple_identifiers_test.rb
parentc8818dfcdf9e92364745000eefe46132a43f8700 (diff)
parent4d01cd1545a00ed6f96d6cb658a590afd36e1871 (diff)
downloadrails-703ddadafee29c86ca5be499a80802fbea70a64f.tar.gz
rails-703ddadafee29c86ca5be499a80802fbea70a64f.tar.bz2
rails-703ddadafee29c86ca5be499a80802fbea70a64f.zip
Merge pull request #23305 from matthewd/concurrent-take-2
EventMachine -> concurrent-ruby, take two
Diffstat (limited to 'actioncable/test/connection/multiple_identifiers_test.rb')
-rw-r--r--actioncable/test/connection/multiple_identifiers_test.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/actioncable/test/connection/multiple_identifiers_test.rb b/actioncable/test/connection/multiple_identifiers_test.rb
index 55a9f96cb3..e9bb4e6d7f 100644
--- a/actioncable/test/connection/multiple_identifiers_test.rb
+++ b/actioncable/test/connection/multiple_identifiers_test.rb
@@ -32,10 +32,10 @@ class ActionCable::Connection::MultipleIdentifiersTest < ActionCable::TestCase
@connection = Connection.new(server, env)
@connection.process
- @connection.send :on_open
+ @connection.send :handle_open
end
def close_connection
- @connection.send :on_close
+ @connection.send :handle_close
end
end