diff options
author | Francesco Rodriguez <frodsan@me.com> | 2014-01-24 22:25:15 -0300 |
---|---|---|
committer | Francesco Rodriguez <frodsan@me.com> | 2014-01-24 22:25:15 -0300 |
commit | e2f3e0dc50a30c8600df6dc8106dca67d4cd0961 (patch) | |
tree | 22db45f61d9bbe0296dcef35df60ad2f59f6c047 /actionpack | |
parent | 220ee0c74abdcdeb62f30d829ba1475d63634241 (diff) | |
download | rails-e2f3e0dc50a30c8600df6dc8106dca67d4cd0961.tar.gz rails-e2f3e0dc50a30c8600df6dc8106dca67d4cd0961.tar.bz2 rails-e2f3e0dc50a30c8600df6dc8106dca67d4cd0961.zip |
Remove unused argument.
Diffstat (limited to 'actionpack')
-rw-r--r-- | actionpack/test/controller/http_token_authentication_test.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/actionpack/test/controller/http_token_authentication_test.rb b/actionpack/test/controller/http_token_authentication_test.rb index ebf6d224aa..86b94652ce 100644 --- a/actionpack/test/controller/http_token_authentication_test.rb +++ b/actionpack/test/controller/http_token_authentication_test.rb @@ -21,7 +21,7 @@ class HttpTokenAuthenticationTest < ActionController::TestCase private def authenticate - authenticate_or_request_with_http_token do |token, options| + authenticate_or_request_with_http_token do |token, _| token == 'lifo' end end |