aboutsummaryrefslogtreecommitdiffstats
path: root/actioncable/test/stubs/test_server.rb
diff options
context:
space:
mode:
Diffstat (limited to 'actioncable/test/stubs/test_server.rb')
-rw-r--r--actioncable/test/stubs/test_server.rb10
1 files changed, 5 insertions, 5 deletions
diff --git a/actioncable/test/stubs/test_server.rb b/actioncable/test/stubs/test_server.rb
index b86f422a13..71819a43dc 100644
--- a/actioncable/test/stubs/test_server.rb
+++ b/actioncable/test/stubs/test_server.rb
@@ -1,4 +1,4 @@
-require 'ostruct'
+require "ostruct"
class TestServer
include ActionCable::Server::Connections
@@ -10,14 +10,14 @@ class TestServer
@logger = ActiveSupport::TaggedLogging.new ActiveSupport::Logger.new(StringIO.new)
@config = OpenStruct.new(log_tags: [], subscription_adapter: subscription_adapter)
- @config.use_faye = ENV['FAYE'].present?
+ @config.use_faye = ENV["FAYE"].present?
@config.client_socket_class = if @config.use_faye
- ActionCable::Connection::FayeClientSocket
+ ActionCable::Connection::FayeClientSocket
else
ActionCable::Connection::ClientSocket
end
- @mutex = Monitor.new
+ @mutex = Monitor.new
end
def pubsub
@@ -26,7 +26,7 @@ class TestServer
def event_loop
@event_loop ||= if @config.use_faye
- ActionCable::Connection::FayeEventLoop.new
+ ActionCable::Connection::FayeEventLoop.new
else
ActionCable::Connection::StreamEventLoop.new
end