diff options
author | José Valim <jose.valim@gmail.com> | 2012-03-17 05:13:37 -0700 |
---|---|---|
committer | José Valim <jose.valim@gmail.com> | 2012-03-17 05:13:37 -0700 |
commit | 21e530008929bc513574719b286084b025b9b036 (patch) | |
tree | a285286eed14dddd789cf3f41888153c6eeb7caa /actionpack/test | |
parent | cb0585eabe770ca92d72a935b06c8cb408b5d7a2 (diff) | |
parent | 131083b819dba92b7e4b243996cc1b7e4ae23103 (diff) | |
download | rails-21e530008929bc513574719b286084b025b9b036.tar.gz rails-21e530008929bc513574719b286084b025b9b036.tar.bz2 rails-21e530008929bc513574719b286084b025b9b036.zip |
Merge pull request #5487 from kennyj/should_use_argument
Should use an argument in http_digest_authentication_test.rb
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 a91e3cafa5..828ea5b0fb 100644 --- a/actionpack/test/controller/http_digest_authentication_test.rb +++ b/actionpack/test/controller/http_digest_authentication_test.rb @@ -274,6 +274,6 @@ class HttpDigestAuthenticationTest < ActionController::TestCase end def decode_credentials(header) - ActionController::HttpAuthentication::Digest.decode_credentials(@response.headers['WWW-Authenticate']) + ActionController::HttpAuthentication::Digest.decode_credentials(header) end end |