diff options
author | Santiago Pastorino <santiago@wyeworks.com> | 2012-02-21 03:17:41 -0800 |
---|---|---|
committer | Santiago Pastorino <santiago@wyeworks.com> | 2012-02-21 03:17:41 -0800 |
commit | c4265914fb1775b09a8a29f606f1b9535e5d4146 (patch) | |
tree | 71a06a722a6259f946c3eaeca76dcb9c0c8d0384 /actionpack/test/dispatch | |
parent | b80d8f71112279f989ad3accbfed277a25cedd57 (diff) | |
parent | 39d461703361834c2e51dd9179afce0f8a0a83ff (diff) | |
download | rails-c4265914fb1775b09a8a29f606f1b9535e5d4146.tar.gz rails-c4265914fb1775b09a8a29f606f1b9535e5d4146.tar.bz2 rails-c4265914fb1775b09a8a29f606f1b9535e5d4146.zip |
Merge pull request #5106 from kennyj/fix_warnings_20120210
[3-2-stable] Fix some warnings
Diffstat (limited to 'actionpack/test/dispatch')
-rw-r--r-- | actionpack/test/dispatch/routing_test.rb | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/actionpack/test/dispatch/routing_test.rb b/actionpack/test/dispatch/routing_test.rb index 3922e3628d..b96987410f 100644 --- a/actionpack/test/dispatch/routing_test.rb +++ b/actionpack/test/dispatch/routing_test.rb @@ -2574,7 +2574,6 @@ class TestUnicodePaths < ActionDispatch::IntegrationTest Routes = ActionDispatch::Routing::RouteSet.new.tap do |app| app.draw do match "/#{Rack::Utils.escape("ほげ")}" => lambda { |env| - path_params = env['action_dispatch.request.path_parameters'] [200, { 'Content-Type' => 'text/plain' }, []] }, :as => :unicode_path end |