diff options
author | Aaron Patterson <aaron.patterson@gmail.com> | 2015-08-14 10:44:49 -0700 |
---|---|---|
committer | Aaron Patterson <aaron.patterson@gmail.com> | 2015-08-14 10:44:49 -0700 |
commit | b592c5b607e4879c0b603bf636cf6d11e9f4b8d2 (patch) | |
tree | 8bdc00f903c4648b9ec3a40c64419b1dc9c7a7f6 /actionpack/test/dispatch | |
parent | aaaa67902ee1d129a6907e4ebd726f383ad7002b (diff) | |
download | rails-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.rb | 2 |
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 |