diff options
Diffstat (limited to 'actionpack/test/controller/http_digest_authentication_test.rb')
| -rw-r--r-- | actionpack/test/controller/http_digest_authentication_test.rb | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/actionpack/test/controller/http_digest_authentication_test.rb b/actionpack/test/controller/http_digest_authentication_test.rb index 5e9b801f8b..343b7b643d 100644 --- a/actionpack/test/controller/http_digest_authentication_test.rb +++ b/actionpack/test/controller/http_digest_authentication_test.rb @@ -7,7 +7,7 @@ class HttpDigestAuthenticationTest < ActionController::TestCase      before_action :authenticate_with_request, only: :display      USERS = { "lifo" => "world", "pretty" => "please", -              "dhh" => ::Digest::MD5::hexdigest(["dhh","SuperSecret","secret"].join(":"))} +              "dhh" => ::Digest::MD5::hexdigest(["dhh","SuperSecret","secret"].join(":")) }      def index        render plain: "Hello Secret" @@ -199,7 +199,7 @@ class HttpDigestAuthenticationTest < ActionController::TestCase    test "validate_digest_response should fail with nil returning password_procedure" do      @request.env["HTTP_AUTHORIZATION"] = encode_credentials(username: nil, password: nil) -    assert !ActionController::HttpAuthentication::Digest.validate_digest_response(@request, "SuperSecret"){nil} +    assert !ActionController::HttpAuthentication::Digest.validate_digest_response(@request, "SuperSecret") { nil }    end    test "authentication request with request-uri ending in '/'" do  | 
