diff options
author | Andrew White <andyw@pixeltrix.co.uk> | 2013-06-25 12:24:06 +0100 |
---|---|---|
committer | Andrew White <andyw@pixeltrix.co.uk> | 2013-06-25 12:24:06 +0100 |
commit | b0c65978ab0eff0eca8ac374046c26398f144a18 (patch) | |
tree | 50ad1e11ac1f511c0dba2950984abc353aa4d2b1 /actionpack | |
parent | 622e4ab424ea260cd3ebe3768b1a2a4e5ae1384e (diff) | |
download | rails-b0c65978ab0eff0eca8ac374046c26398f144a18.tar.gz rails-b0c65978ab0eff0eca8ac374046c26398f144a18.tar.bz2 rails-b0c65978ab0eff0eca8ac374046c26398f144a18.zip |
Use old style hash syntax for 3-2-stable
Diffstat (limited to 'actionpack')
-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 |