Skip to content

Commit

Permalink
One last fix to test_filter_parameters_is_protected.
Browse files Browse the repository at this point in the history
  • Loading branch information
josh committed May 14, 2008
1 parent 3b0e1d9 commit bc3cc91
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion actionpack/test/controller/filter_params_test.rb
Expand Up @@ -43,7 +43,7 @@ def test_filter_parameters

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

0 comments on commit bc3cc91

Please sign in to comment.