Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixed ActionCable::Connection::ClientSocketTest test #24559

Merged
merged 1 commit into from
Apr 15, 2016
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
5 changes: 2 additions & 3 deletions actioncable/test/connection/client_socket_test.rb
Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@
require 'test_helper'
require 'stubs/test_server'

class ActionCable::Connection::StreamTest < ActionCable::TestCase
class ActionCable::Connection::ClientSocketTest < ActionCable::TestCase
class Connection < ActionCable::Connection::Base
attr_reader :websocket, :subscriptions, :message_buffer, :connected
attr_reader :errors
attr_reader :connected, :websocket, :errors

def initialize(*)
super
Expand Down
3 changes: 1 addition & 2 deletions actioncable/test/connection/stream_test.rb
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,7 @@

class ActionCable::Connection::StreamTest < ActionCable::TestCase
class Connection < ActionCable::Connection::Base
attr_reader :websocket, :subscriptions, :message_buffer, :connected
attr_reader :errors
attr_reader :connected, :websocket, :errors

def initialize(*)
super
Expand Down