aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/test/dispatch
diff options
context:
space:
mode:
authorAaron Patterson <aaron.patterson@gmail.com>2015-08-14 10:44:49 -0700
committerAaron Patterson <aaron.patterson@gmail.com>2015-08-14 10:44:49 -0700
commitb592c5b607e4879c0b603bf636cf6d11e9f4b8d2 (patch)
tree8bdc00f903c4648b9ec3a40c64419b1dc9c7a7f6 /actionpack/test/dispatch
parentaaaa67902ee1d129a6907e4ebd726f383ad7002b (diff)
downloadrails-b592c5b607e4879c0b603bf636cf6d11e9f4b8d2.tar.gz
rails-b592c5b607e4879c0b603bf636cf6d11e9f4b8d2.tar.bz2
rails-b592c5b607e4879c0b603bf636cf6d11e9f4b8d2.zip
pass the path ast down
now we don't need to add it to a hash and delete it from the hash later just to pass it around
Diffstat (limited to 'actionpack/test/dispatch')
-rw-r--r--actionpack/test/dispatch/mapper_test.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/actionpack/test/dispatch/mapper_test.rb b/actionpack/test/dispatch/mapper_test.rb
index 0c506a13bf..289fb69b8b 100644
--- a/actionpack/test/dispatch/mapper_test.rb
+++ b/actionpack/test/dispatch/mapper_test.rb
@@ -27,7 +27,7 @@ module ActionDispatch
end
def defaults
- @my_routes.map { |x| x[3] }
+ @my_routes.map { |x| x[4] }
end
def conditions