aboutsummaryrefslogtreecommitdiffstats
path: root/railties/test
diff options
context:
space:
mode:
authorBen Toews <mastahyeti@users.noreply.github.com>2016-01-04 12:23:55 -0700
committerBen Toews <mastahyeti@users.noreply.github.com>2016-01-04 12:26:38 -0700
commit3e98819e20bc113343d4d4c0df614865ad5a9d3a (patch)
treefa003a9cbbec97f7d1cdb9a87a2c065473ad2e4d /railties/test
parente165f7fa6044926796c9d9a8bb9a81bc78431d4f (diff)
downloadrails-3e98819e20bc113343d4d4c0df614865ad5a9d3a.tar.gz
rails-3e98819e20bc113343d4d4c0df614865ad5a9d3a.tar.bz2
rails-3e98819e20bc113343d4d4c0df614865ad5a9d3a.zip
add option for per-form CSRF tokens
Diffstat (limited to 'railties/test')
-rw-r--r--railties/test/application/configuration_test.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/railties/test/application/configuration_test.rb b/railties/test/application/configuration_test.rb
index 50d343865c..af3a391cc4 100644
--- a/railties/test/application/configuration_test.rb
+++ b/railties/test/application/configuration_test.rb
@@ -657,7 +657,7 @@ module ApplicationTests
private
- def form_authenticity_token; token; end # stub the authenticy token
+ def form_authenticity_token(*args); token; end # stub the authenticy token
end
RUBY