diff options
author | Arun Agrawal <arunagw@gmail.com> | 2012-03-19 11:55:50 +0530 |
---|---|---|
committer | Arun Agrawal <arunagw@gmail.com> | 2012-03-19 11:58:55 +0530 |
commit | fcc8743459422a8c2e6f08e84db53c0298061946 (patch) | |
tree | dd470513b32aa039cb0967a82cf667a7d4ba2183 /actionpack/test/controller | |
parent | 74b782999f7f2c8913e79e2c65366429b9a3e65e (diff) | |
download | rails-fcc8743459422a8c2e6f08e84db53c0298061946.tar.gz rails-fcc8743459422a8c2e6f08e84db53c0298061946.tar.bz2 rails-fcc8743459422a8c2e6f08e84db53c0298061946.zip |
Build fix for ruby1.8.7-358
Diffstat (limited to 'actionpack/test/controller')
-rw-r--r-- | actionpack/test/controller/request_forgery_protection_test.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/actionpack/test/controller/request_forgery_protection_test.rb b/actionpack/test/controller/request_forgery_protection_test.rb index 37b9de350b..b8b14f3a24 100644 --- a/actionpack/test/controller/request_forgery_protection_test.rb +++ b/actionpack/test/controller/request_forgery_protection_test.rb @@ -115,7 +115,7 @@ module RequestForgeryProtectionTests assert_not_blocked do get :form_for_remote end - assert_no_match /authenticity_token/, response.body + assert_no_match(/authenticity_token/, response.body) end def test_should_render_form_with_token_tag_if_remote_and_authenticity_token_requested |