diff options
Diffstat (limited to 'actionpack/test')
-rw-r--r-- | actionpack/test/dispatch/routing_test.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/actionpack/test/dispatch/routing_test.rb b/actionpack/test/dispatch/routing_test.rb index c5a5c07b80..659c6c715e 100644 --- a/actionpack/test/dispatch/routing_test.rb +++ b/actionpack/test/dispatch/routing_test.rb @@ -530,8 +530,8 @@ class TestRoutingMapper < ActionDispatch::IntegrationTest end end - scope '/job', controller: 'job' do - scope ':id', action: 'manage_applicant' do + scope '/job', :controller => 'job' do + scope ':id', :action => 'manage_applicant' do get "/active" end end |