diff --git a/actionpack/test/dispatch/routing_test.rb b/actionpack/test/dispatch/routing_test.rb index c5a5c07b80486..659c6c715eebd 100644 --- a/actionpack/test/dispatch/routing_test.rb +++ b/actionpack/test/dispatch/routing_test.rb @@ -530,8 +530,8 @@ def self.call(params, request) 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