aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack
diff options
context:
space:
mode:
authorJerry D'Antonio <stumpjumper@gmail.com>2015-11-02 21:30:50 -0500
committerJerry D'Antonio <stumpjumper@gmail.com>2015-11-04 21:12:28 -0500
commit23b6f65fd130c29e5f6ea69e09f6381cf7e34e27 (patch)
tree55fd54004ac262b1d51dd1b9573a7f2b4efb8797 /actionpack
parent23bb31b158fe10e5872dc80634a7ff172531c570 (diff)
downloadrails-23b6f65fd130c29e5f6ea69e09f6381cf7e34e27.tar.gz
rails-23b6f65fd130c29e5f6ea69e09f6381cf7e34e27.tar.bz2
rails-23b6f65fd130c29e5f6ea69e09f6381cf7e34e27.zip
Require only necessary concurrent-ruby classes.
Diffstat (limited to 'actionpack')
-rw-r--r--actionpack/test/controller/live_stream_test.rb2
-rw-r--r--actionpack/test/dispatch/live_response_test.rb2
2 files changed, 2 insertions, 2 deletions
diff --git a/actionpack/test/controller/live_stream_test.rb b/actionpack/test/controller/live_stream_test.rb
index 4224ac2a1b..843dafac06 100644
--- a/actionpack/test/controller/live_stream_test.rb
+++ b/actionpack/test/controller/live_stream_test.rb
@@ -1,5 +1,5 @@
require 'abstract_unit'
-require 'concurrent/atomics'
+require 'concurrent/atomic/count_down_latch'
Thread.abort_on_exception = true
module ActionController
diff --git a/actionpack/test/dispatch/live_response_test.rb b/actionpack/test/dispatch/live_response_test.rb
index 55becc1c91..160cdc1582 100644
--- a/actionpack/test/dispatch/live_response_test.rb
+++ b/actionpack/test/dispatch/live_response_test.rb
@@ -1,5 +1,5 @@
require 'abstract_unit'
-require 'concurrent/atomics'
+require 'concurrent/atomic/count_down_latch'
module ActionController
module Live