diff options
author | kennyj <kennyj@gmail.com> | 2012-03-17 20:23:28 +0900 |
---|---|---|
committer | kennyj <kennyj@gmail.com> | 2012-03-17 20:23:28 +0900 |
commit | 131083b819dba92b7e4b243996cc1b7e4ae23103 (patch) | |
tree | a285286eed14dddd789cf3f41888153c6eeb7caa /actionpack | |
parent | cb0585eabe770ca92d72a935b06c8cb408b5d7a2 (diff) | |
download | rails-131083b819dba92b7e4b243996cc1b7e4ae23103.tar.gz rails-131083b819dba92b7e4b243996cc1b7e4ae23103.tar.bz2 rails-131083b819dba92b7e4b243996cc1b7e4ae23103.zip |
Should use an argument in http_digest_authentication_test.rb
Diffstat (limited to 'actionpack')
-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 |