aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack
diff options
context:
space:
mode:
authorJeremy Kemper <jeremy@bitsweat.net>2009-11-04 15:00:19 -0800
committerJeremy Kemper <jeremy@bitsweat.net>2009-11-04 15:00:19 -0800
commit0ff8f81adcf1e025a34d4a50ea1db39384a00e0b (patch)
treee30584c0e92fcfc4da5a5986cdaf87f0df992c2a /actionpack
parent52e2bbd5c004f22b2affeec0fc03f1f9ca8c2a24 (diff)
downloadrails-0ff8f81adcf1e025a34d4a50ea1db39384a00e0b.tar.gz
rails-0ff8f81adcf1e025a34d4a50ea1db39384a00e0b.tar.bz2
rails-0ff8f81adcf1e025a34d4a50ea1db39384a00e0b.zip
Ruby 1.9: more constant lookup badness :(
Diffstat (limited to 'actionpack')
-rw-r--r--actionpack/test/controller/integration_test.rb2
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