aboutsummaryrefslogtreecommitdiffstats
path: root/actioncable
diff options
context:
space:
mode:
authorRyuta Kamizono <kamipo@gmail.com>2017-08-12 03:09:53 +0900
committerRafael França <rafaelmfranca@gmail.com>2017-08-11 14:09:53 -0400
commit67f1b51f8518577b1bb044a3f5da6279975f0461 (patch)
tree4b6f5f72d366e858ff05d5963842ca52f798b0cb /actioncable
parente25466b142c067ad44130d93fa864f5ffa9643bb (diff)
downloadrails-67f1b51f8518577b1bb044a3f5da6279975f0461.tar.gz
rails-67f1b51f8518577b1bb044a3f5da6279975f0461.tar.bz2
rails-67f1b51f8518577b1bb044a3f5da6279975f0461.zip
Remove unused `close_connection` in Action Cable tests (#30195)
Diffstat (limited to 'actioncable')
-rw-r--r--actioncable/test/connection/multiple_identifiers_test.rb4
-rw-r--r--actioncable/test/connection/string_identifier_test.rb4
2 files changed, 0 insertions, 8 deletions
diff --git a/actioncable/test/connection/multiple_identifiers_test.rb b/actioncable/test/connection/multiple_identifiers_test.rb
index 230433a110..7f90cb3876 100644
--- a/actioncable/test/connection/multiple_identifiers_test.rb
+++ b/actioncable/test/connection/multiple_identifiers_test.rb
@@ -36,8 +36,4 @@ class ActionCable::Connection::MultipleIdentifiersTest < ActionCable::TestCase
@connection.process
@connection.send :handle_open
end
-
- def close_connection
- @connection.send :handle_close
- end
end
diff --git a/actioncable/test/connection/string_identifier_test.rb b/actioncable/test/connection/string_identifier_test.rb
index 6387fb792c..4cb58e7fd0 100644
--- a/actioncable/test/connection/string_identifier_test.rb
+++ b/actioncable/test/connection/string_identifier_test.rb
@@ -38,8 +38,4 @@ class ActionCable::Connection::StringIdentifierTest < ActionCable::TestCase
@connection.process
@connection.send :on_open
end
-
- def close_connection
- @connection.send :on_close
- end
end