aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/test/dispatch/request/url_encoded_params_parsing_test.rb
diff options
context:
space:
mode:
authorJeremy Kemper <jeremy@bitsweat.net>2009-11-04 15:25:15 -0800
committerJeremy Kemper <jeremy@bitsweat.net>2009-11-04 15:41:50 -0800
commit425a02cecea188f502ad8f137271d1b90b9c7558 (patch)
tree60895b3e45f50a183a9b172feb394b0652e1fb2b /actionpack/test/dispatch/request/url_encoded_params_parsing_test.rb
parent0ff8f81adcf1e025a34d4a50ea1db39384a00e0b (diff)
downloadrails-425a02cecea188f502ad8f137271d1b90b9c7558.tar.gz
rails-425a02cecea188f502ad8f137271d1b90b9c7558.tar.bz2
rails-425a02cecea188f502ad8f137271d1b90b9c7558.zip
Ruby 1.9: resolve constant lookup issues
Diffstat (limited to 'actionpack/test/dispatch/request/url_encoded_params_parsing_test.rb')
-rw-r--r--actionpack/test/dispatch/request/url_encoded_params_parsing_test.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/actionpack/test/dispatch/request/url_encoded_params_parsing_test.rb b/actionpack/test/dispatch/request/url_encoded_params_parsing_test.rb
index e98a49980e..69dbd7f528 100644
--- a/actionpack/test/dispatch/request/url_encoded_params_parsing_test.rb
+++ b/actionpack/test/dispatch/request/url_encoded_params_parsing_test.rb
@@ -130,7 +130,7 @@ class UrlEncodedParamsParsingTest < ActionController::IntegrationTest
def with_test_routing
with_routing do |set|
set.draw do |map|
- match ':action', :to => TestController
+ match ':action', :to => ::UrlEncodedParamsParsingTest::TestController
end
yield
end