aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/test/controller
diff options
context:
space:
mode:
authorkennyj <kennyj@gmail.com>2012-03-17 20:23:28 +0900
committerkennyj <kennyj@gmail.com>2012-03-17 20:23:28 +0900
commit131083b819dba92b7e4b243996cc1b7e4ae23103 (patch)
treea285286eed14dddd789cf3f41888153c6eeb7caa /actionpack/test/controller
parentcb0585eabe770ca92d72a935b06c8cb408b5d7a2 (diff)
downloadrails-131083b819dba92b7e4b243996cc1b7e4ae23103.tar.gz
rails-131083b819dba92b7e4b243996cc1b7e4ae23103.tar.bz2
rails-131083b819dba92b7e4b243996cc1b7e4ae23103.zip
Should use an argument in http_digest_authentication_test.rb
Diffstat (limited to 'actionpack/test/controller')
-rw-r--r--actionpack/test/controller/http_digest_authentication_test.rb2
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