diff options
author | Santiago Pastorino <santiago@wyeworks.com> | 2011-06-19 21:59:45 -0300 |
---|---|---|
committer | Santiago Pastorino <santiago@wyeworks.com> | 2011-06-19 22:00:22 -0300 |
commit | 4131fd7c796a0941eb63cb2215da0aebd92dbfe1 (patch) | |
tree | 0c08191b9aa9ba00cd100d936ee8b2bc69b6b277 /actionpack/lib/action_controller | |
parent | 93b7da478b81c93afd9410a506e5d37ad607b900 (diff) | |
download | rails-4131fd7c796a0941eb63cb2215da0aebd92dbfe1.tar.gz rails-4131fd7c796a0941eb63cb2215da0aebd92dbfe1.tar.bz2 rails-4131fd7c796a0941eb63cb2215da0aebd92dbfe1.zip |
Call super here to allow SessionHash initialize new stuff for us
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 d14bb666cc..45bb641aee 100644 --- a/actionpack/lib/action_controller/test_case.rb +++ b/actionpack/lib/action_controller/test_case.rb @@ -210,7 +210,7 @@ module ActionController DEFAULT_OPTIONS = Rack::Session::Abstract::ID::DEFAULT_OPTIONS def initialize(session = {}) - @env, @by = nil, nil + super(nil, nil) replace(session.stringify_keys) @loaded = true end |