aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/test
diff options
context:
space:
mode:
authorJoshua Peek <josh@joshpeek.com>2010-03-09 21:25:09 -0600
committerJoshua Peek <josh@joshpeek.com>2010-03-09 21:25:09 -0600
commitdcd110c724aa5111e67e7264e6bc76ebdda6d50f (patch)
treef11f3480112e0aa6a85c4a90904048ebf23f0293 /actionpack/test
parent1cc2a61ea655fea246f4c3e22a9e4a494e99d952 (diff)
downloadrails-dcd110c724aa5111e67e7264e6bc76ebdda6d50f.tar.gz
rails-dcd110c724aa5111e67e7264e6bc76ebdda6d50f.tar.bz2
rails-dcd110c724aa5111e67e7264e6bc76ebdda6d50f.zip
skip_relative_url_root url_for option is dead
Diffstat (limited to 'actionpack/test')
-rw-r--r--actionpack/test/controller/caching_test.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/actionpack/test/controller/caching_test.rb b/actionpack/test/controller/caching_test.rb
index 8a0c118d3c..a3c8fdbb6e 100644
--- a/actionpack/test/controller/caching_test.rb
+++ b/actionpack/test/controller/caching_test.rb
@@ -63,7 +63,7 @@ class PageCachingTest < ActionController::TestCase
@controller = PageCachingTestController.new
@controller.cache_store = :file_store, FILE_STORE_PATH
- @params = {:controller => 'posts', :action => 'index', :only_path => true, :skip_relative_url_root => true}
+ @params = {:controller => 'posts', :action => 'index', :only_path => true}
FileUtils.rm_rf(File.dirname(FILE_STORE_PATH))
FileUtils.mkdir_p(FILE_STORE_PATH)