diff options
author | Eileen M. Uchitelle <eileencodes@gmail.com> | 2016-09-04 08:15:37 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-09-04 08:15:37 -0400 |
commit | 9aaf8ca7672d525e1b5d54abc07ae9d589cf4e44 (patch) | |
tree | 71549158d221f4306921ac20986890a30087c5a8 /actionpack | |
parent | 395c4f8d37d884425fffbaf5adce44fda049f305 (diff) | |
parent | f282626281317194bb88a750343ae9e827ba702d (diff) | |
download | rails-9aaf8ca7672d525e1b5d54abc07ae9d589cf4e44.tar.gz rails-9aaf8ca7672d525e1b5d54abc07ae9d589cf4e44.tar.bz2 rails-9aaf8ca7672d525e1b5d54abc07ae9d589cf4e44.zip |
Merge pull request #26377 from y-yagi/rename_test_method_to_avoid_overriding
rename test method to avoid overriding
Diffstat (limited to 'actionpack')
-rw-r--r-- | actionpack/test/dispatch/routing_test.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/actionpack/test/dispatch/routing_test.rb b/actionpack/test/dispatch/routing_test.rb index eec34dba66..6ba52e37b6 100644 --- a/actionpack/test/dispatch/routing_test.rb +++ b/actionpack/test/dispatch/routing_test.rb @@ -3693,7 +3693,7 @@ class TestRoutingMapper < ActionDispatch::IntegrationTest assert_equal "admin/pages#index", @response.body end - def test_namespaced_roots + def test_multiple_namespaced_roots draw do namespace :foo do root "test#index" |