diff options
author | Aaron Patterson <aaron.patterson@gmail.com> | 2015-09-18 14:34:42 -0700 |
---|---|---|
committer | Aaron Patterson <aaron.patterson@gmail.com> | 2015-09-18 14:34:42 -0700 |
commit | 58dba19a0b0e4f71927b3262970f0d5dcb8990ea (patch) | |
tree | 6d78800d47f850a21bd7aebfb2aca4e3e526c4d0 /actionpack | |
parent | d14d41282e90c5e32edeeda79014a2f83b907b73 (diff) | |
download | rails-58dba19a0b0e4f71927b3262970f0d5dcb8990ea.tar.gz rails-58dba19a0b0e4f71927b3262970f0d5dcb8990ea.tar.bz2 rails-58dba19a0b0e4f71927b3262970f0d5dcb8990ea.zip |
remove outdated comment
all parameter parsing is done on the request object now, so we don't
need to worry about at ParamParser middleware
Diffstat (limited to 'actionpack')
-rw-r--r-- | actionpack/lib/action_controller/test_case.rb | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/actionpack/lib/action_controller/test_case.rb b/actionpack/lib/action_controller/test_case.rb index 869f8e432b..f16c851456 100644 --- a/actionpack/lib/action_controller/test_case.rb +++ b/actionpack/lib/action_controller/test_case.rb @@ -77,10 +77,6 @@ module ActionController set_header k, 'application/x-www-form-urlencoded' end - # FIXME: setting `request_parametes` is normally handled by the - # params parser middleware, and we should remove this roundtripping - # when we switch to caling `call` on the controller - case content_mime_type.to_sym when nil raise "Unknown Content-Type: #{content_type}" |