diff options
author | Joshua Peek <josh@joshpeek.com> | 2008-05-14 14:14:23 -0500 |
---|---|---|
committer | Joshua Peek <josh@joshpeek.com> | 2008-05-14 14:14:23 -0500 |
commit | bc3cc91a3f53816cc205f791cba34514ce0a113e (patch) | |
tree | 2b9daa23ff333fb90d4f292bc5036d3d35957514 /actionpack | |
parent | 3b0e1d90938e3d4c98830e037b3da15b3f736f7f (diff) | |
download | rails-bc3cc91a3f53816cc205f791cba34514ce0a113e.tar.gz rails-bc3cc91a3f53816cc205f791cba34514ce0a113e.tar.bz2 rails-bc3cc91a3f53816cc205f791cba34514ce0a113e.zip |
One last fix to test_filter_parameters_is_protected.
Diffstat (limited to 'actionpack')
-rw-r--r-- | actionpack/test/controller/filter_params_test.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/actionpack/test/controller/filter_params_test.rb b/actionpack/test/controller/filter_params_test.rb index 12048bfa08..c4de10181d 100644 --- a/actionpack/test/controller/filter_params_test.rb +++ b/actionpack/test/controller/filter_params_test.rb @@ -43,7 +43,7 @@ class FilterParamTest < Test::Unit::TestCase def test_filter_parameters_is_protected FilterParamController.filter_parameter_logging(:foo) - assert !FilterParamController.action_methods.include?(:filter_parameters) + assert !FilterParamController.action_methods.include?('filter_parameters') assert_raise(NoMethodError) { @controller.filter_parameters([{'password' => '[FILTERED]'}]) } end end |