diff options
author | Aaron Patterson <aaron.patterson@gmail.com> | 2015-08-07 15:35:39 -0700 |
---|---|---|
committer | Aaron Patterson <aaron.patterson@gmail.com> | 2015-08-07 15:37:31 -0700 |
commit | 2a3c47ff5d4ed7391d8a2d02a6baa1f1f55a8df3 (patch) | |
tree | 5fb466434b62c2b3487b1f18e9eb874fc4be451b /actionpack/test/controller | |
parent | 83b767cef90abfc4c2ee9f4b451b0215501fae9a (diff) | |
download | rails-2a3c47ff5d4ed7391d8a2d02a6baa1f1f55a8df3.tar.gz rails-2a3c47ff5d4ed7391d8a2d02a6baa1f1f55a8df3.tar.bz2 rails-2a3c47ff5d4ed7391d8a2d02a6baa1f1f55a8df3.zip |
finish deprecating handling strings and symbols
since we only work with instances of classes, it greatly simplifies the
`Middleware` implementation.
Diffstat (limited to 'actionpack/test/controller')
-rw-r--r-- | actionpack/test/controller/flash_test.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/actionpack/test/controller/flash_test.rb b/actionpack/test/controller/flash_test.rb index 64543f0659..b063d769a4 100644 --- a/actionpack/test/controller/flash_test.rb +++ b/actionpack/test/controller/flash_test.rb @@ -329,7 +329,7 @@ class FlashIntegrationTest < ActionDispatch::IntegrationTest @app = self.class.build_app(set) do |middleware| middleware.use ActionDispatch::Session::CookieStore, :key => SessionKey middleware.use ActionDispatch::Flash - middleware.delete "ActionDispatch::ShowExceptions" + middleware.delete ActionDispatch::ShowExceptions end yield |