diff options
author | Carlos Antonio da Silva <carlosantoniodasilva@gmail.com> | 2012-03-26 20:16:12 -0300 |
---|---|---|
committer | Carlos Antonio da Silva <carlosantoniodasilva@gmail.com> | 2012-03-26 20:16:13 -0300 |
commit | 2ceb3fc56aa338583ceaf20a9b5834756d14291b (patch) | |
tree | b1400dcbaa91aed16133c2f0b1122d13c93ebc12 | |
parent | 5ad9a8e874db9e210123fde7a542cd2a05c6abd3 (diff) | |
download | rails-2ceb3fc56aa338583ceaf20a9b5834756d14291b.tar.gz rails-2ceb3fc56aa338583ceaf20a9b5834756d14291b.tar.bz2 rails-2ceb3fc56aa338583ceaf20a9b5834756d14291b.zip |
Remove warning added by my own commit :fire:
Commit: 7a0cf2f5294e8bcef547642435636b394340a3e4
-rw-r--r-- | actionpack/test/template/form_helper_test.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/actionpack/test/template/form_helper_test.rb b/actionpack/test/template/form_helper_test.rb index 3b1af47770..c5a32635f8 100644 --- a/actionpack/test/template/form_helper_test.rb +++ b/actionpack/test/template/form_helper_test.rb @@ -2238,7 +2238,7 @@ class FormHelperTest < ActionView::TestCase end end - assert_deprecated /Giving a block to FormBuilder is deprecated and has no effect anymore/ do + assert_deprecated(/Giving a block to FormBuilder is deprecated and has no effect anymore/) do builder_class.new(:foo, nil, nil, {}, proc {}) end end |