diff options
author | Jeremy Kemper <jeremy@bitsweat.net> | 2009-11-04 15:00:19 -0800 |
---|---|---|
committer | Jeremy Kemper <jeremy@bitsweat.net> | 2009-11-04 15:00:19 -0800 |
commit | 0ff8f81adcf1e025a34d4a50ea1db39384a00e0b (patch) | |
tree | e30584c0e92fcfc4da5a5986cdaf87f0df992c2a /actionpack/test/controller | |
parent | 52e2bbd5c004f22b2affeec0fc03f1f9ca8c2a24 (diff) | |
download | rails-0ff8f81adcf1e025a34d4a50ea1db39384a00e0b.tar.gz rails-0ff8f81adcf1e025a34d4a50ea1db39384a00e0b.tar.bz2 rails-0ff8f81adcf1e025a34d4a50ea1db39384a00e0b.zip |
Ruby 1.9: more constant lookup badness :(
Diffstat (limited to 'actionpack/test/controller')
-rw-r--r-- | actionpack/test/controller/integration_test.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/actionpack/test/controller/integration_test.rb b/actionpack/test/controller/integration_test.rb index d6e2a5a974..624b14e69b 100644 --- a/actionpack/test/controller/integration_test.rb +++ b/actionpack/test/controller/integration_test.rb @@ -390,7 +390,7 @@ class IntegrationProcessTest < ActionController::IntegrationTest def with_test_route_set with_routing do |set| set.draw do |map| - match ':action', :to => IntegrationController + match ':action', :to => ::IntegrationProcessTest::IntegrationController end yield end |