diff options
author | Aaron Patterson <aaron.patterson@gmail.com> | 2015-09-18 15:36:55 -0700 |
---|---|---|
committer | Aaron Patterson <aaron.patterson@gmail.com> | 2015-09-18 15:36:55 -0700 |
commit | 38d2bf5fd1f3e014f2397898d371c339baa627b1 (patch) | |
tree | deb693f38ee9b8e1892d813d0a0e3eb35f20aa28 /actionpack | |
parent | a9334616120cffb560017e6a563ad401e425602b (diff) | |
download | rails-38d2bf5fd1f3e014f2397898d371c339baa627b1.tar.gz rails-38d2bf5fd1f3e014f2397898d371c339baa627b1.tar.bz2 rails-38d2bf5fd1f3e014f2397898d371c339baa627b1.zip |
mostly remove the ParamsParser middleware
This can still be added to the middleware stack, but is really not
necessary. I'll follow up with a commit that deprecates the constant
Diffstat (limited to 'actionpack')
-rw-r--r-- | actionpack/test/abstract_unit.rb | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/actionpack/test/abstract_unit.rb b/actionpack/test/abstract_unit.rb index 3c498960e4..ef7aab72c6 100644 --- a/actionpack/test/abstract_unit.rb +++ b/actionpack/test/abstract_unit.rb @@ -104,7 +104,6 @@ class ActionDispatch::IntegrationTest < ActiveSupport::TestCase middleware.use ActionDispatch::ShowExceptions, ActionDispatch::PublicExceptions.new("#{FIXTURE_LOAD_PATH}/public") middleware.use ActionDispatch::DebugExceptions middleware.use ActionDispatch::Callbacks - middleware.use ActionDispatch::ParamsParser middleware.use ActionDispatch::Cookies middleware.use ActionDispatch::Flash middleware.use Rack::Head |