aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_controller
diff options
context:
space:
mode:
authorAaron Patterson <aaron.patterson@gmail.com>2015-09-04 18:58:49 -0700
committerAaron Patterson <aaron.patterson@gmail.com>2015-09-04 18:58:49 -0700
commitbcfa2a0d5e70b4217bd93550a69cb137acff1b07 (patch)
treeae40819b59c518a2ecf1db4dd52e02f7904f50b6 /actionpack/lib/action_controller
parent529136d670c46bd66b56c519d4f51ed8f86c75b1 (diff)
downloadrails-bcfa2a0d5e70b4217bd93550a69cb137acff1b07.tar.gz
rails-bcfa2a0d5e70b4217bd93550a69cb137acff1b07.tar.bz2
rails-bcfa2a0d5e70b4217bd93550a69cb137acff1b07.zip
stop using deprecated Abstract::ID class
Diffstat (limited to 'actionpack/lib/action_controller')
-rw-r--r--actionpack/lib/action_controller/test_case.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/actionpack/lib/action_controller/test_case.rb b/actionpack/lib/action_controller/test_case.rb
index d84f5737a8..472bb74add 100644
--- a/actionpack/lib/action_controller/test_case.rb
+++ b/actionpack/lib/action_controller/test_case.rb
@@ -149,7 +149,7 @@ module ActionController
# Methods #destroy and #load! are overridden to avoid calling methods on the
# @store object, which does not exist for the TestSession class.
class TestSession < Rack::Session::Abstract::SessionHash #:nodoc:
- DEFAULT_OPTIONS = Rack::Session::Abstract::ID::DEFAULT_OPTIONS
+ DEFAULT_OPTIONS = Rack::Session::Abstract::Persisted::DEFAULT_OPTIONS
def initialize(session = {})
super(nil, nil)