diff options
author | Aaron Patterson <aaron.patterson@gmail.com> | 2015-09-04 18:58:49 -0700 |
---|---|---|
committer | Aaron Patterson <aaron.patterson@gmail.com> | 2015-09-04 18:58:49 -0700 |
commit | bcfa2a0d5e70b4217bd93550a69cb137acff1b07 (patch) | |
tree | ae40819b59c518a2ecf1db4dd52e02f7904f50b6 /actionpack/lib/action_controller | |
parent | 529136d670c46bd66b56c519d4f51ed8f86c75b1 (diff) | |
download | rails-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.rb | 2 |
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) |