aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJosé Valim <jose.valim@gmail.com>2012-03-17 05:13:37 -0700
committerJosé Valim <jose.valim@gmail.com>2012-03-17 05:13:37 -0700
commit21e530008929bc513574719b286084b025b9b036 (patch)
treea285286eed14dddd789cf3f41888153c6eeb7caa
parentcb0585eabe770ca92d72a935b06c8cb408b5d7a2 (diff)
parent131083b819dba92b7e4b243996cc1b7e4ae23103 (diff)
downloadrails-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
-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