aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack
diff options
context:
space:
mode:
authorGuillermo Iguaran <guilleiguaran@gmail.com>2014-01-24 20:35:00 -0800
committerGuillermo Iguaran <guilleiguaran@gmail.com>2014-01-24 20:35:00 -0800
commit7776fd6afb4463f8e7c39e653bdc2ee9226b22f4 (patch)
tree22db45f61d9bbe0296dcef35df60ad2f59f6c047 /actionpack
parent220ee0c74abdcdeb62f30d829ba1475d63634241 (diff)
parente2f3e0dc50a30c8600df6dc8106dca67d4cd0961 (diff)
downloadrails-7776fd6afb4463f8e7c39e653bdc2ee9226b22f4.tar.gz
rails-7776fd6afb4463f8e7c39e653bdc2ee9226b22f4.tar.bz2
rails-7776fd6afb4463f8e7c39e653bdc2ee9226b22f4.zip
Merge pull request #13835 from frodsan/remove_unused_argument
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