diff options
author | Santiago Pastorino <santiago@wyeworks.com> | 2012-01-27 17:02:13 -0800 |
---|---|---|
committer | Santiago Pastorino <santiago@wyeworks.com> | 2012-01-27 17:02:13 -0800 |
commit | c0dafb615a771ed20922fb7d5c9d48848bbb260c (patch) | |
tree | be8e867e89f77ff8df86ed1c5b2065430758f019 | |
parent | b495a8dba8f479dfd43985936bc33369465bdbaf (diff) | |
parent | b09aca6e3d050b61725c61efa07d22e1629a1700 (diff) | |
download | rails-c0dafb615a771ed20922fb7d5c9d48848bbb260c.tar.gz rails-c0dafb615a771ed20922fb7d5c9d48848bbb260c.tar.bz2 rails-c0dafb615a771ed20922fb7d5c9d48848bbb260c.zip |
Merge pull request #4730 from carlosantoniodasilva/patch-1
Remove not used env[] call in routing_test.
-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 711c03eca6..93f5419487 100644 --- a/actionpack/test/dispatch/routing_test.rb +++ b/actionpack/test/dispatch/routing_test.rb @@ -2550,7 +2550,6 @@ class TestUnicodePaths < ActionDispatch::IntegrationTest Routes = ActionDispatch::Routing::RouteSet.new.tap do |app| app.draw do match "/#{Rack::Utils.escape("ほげ")}" => lambda { |env| - env['action_dispatch.request.path_parameters'] [200, { 'Content-Type' => 'text/plain' }, []] }, :as => :unicode_path end |