diff options
author | Santiago Pastorino <santiago@wyeworks.com> | 2012-11-02 11:03:18 -0200 |
---|---|---|
committer | Santiago Pastorino <santiago@wyeworks.com> | 2012-11-03 14:57:54 -0200 |
commit | c2a7956eb7fbc099ea38d21601d215ab3def27fb (patch) | |
tree | 93bad23997aaeea95320a0b9c21216110e8d6a98 /actionpack/test | |
parent | 851e8fe897633f095a0f39a91f8bc75eee7a76aa (diff) | |
download | rails-c2a7956eb7fbc099ea38d21601d215ab3def27fb.tar.gz rails-c2a7956eb7fbc099ea38d21601d215ab3def27fb.tar.bz2 rails-c2a7956eb7fbc099ea38d21601d215ab3def27fb.zip |
Move ensure_secret_secure to DummyKeyGenerator
Diffstat (limited to 'actionpack/test')
-rw-r--r-- | actionpack/test/controller/http_digest_authentication_test.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/actionpack/test/controller/http_digest_authentication_test.rb b/actionpack/test/controller/http_digest_authentication_test.rb index dd95fad6e1..c4a94264c3 100644 --- a/actionpack/test/controller/http_digest_authentication_test.rb +++ b/actionpack/test/controller/http_digest_authentication_test.rb @@ -42,7 +42,7 @@ class HttpDigestAuthenticationTest < ActionController::TestCase setup do # Used as secret in generating nonce to prevent tampering of timestamp - @secret = "session_options_secret" + @secret = "4fb45da9e4ab4ddeb7580d6a35503d99" @request.env["action_dispatch.key_generator"] = ActiveSupport::DummyKeyGenerator.new(@secret) end |