aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack
diff options
context:
space:
mode:
authorFrancesco Rodriguez <frodsan@me.com>2014-01-24 22:25:15 -0300
committerFrancesco Rodriguez <frodsan@me.com>2014-01-24 22:25:15 -0300
commite2f3e0dc50a30c8600df6dc8106dca67d4cd0961 (patch)
tree22db45f61d9bbe0296dcef35df60ad2f59f6c047 /actionpack
parent220ee0c74abdcdeb62f30d829ba1475d63634241 (diff)
downloadrails-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.rb2
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