aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/test/controller/view_paths_test.rb
diff options
context:
space:
mode:
authorYehuda Katz + Carl Lerche <ykatz+clerche@engineyard.com>2009-09-01 15:54:29 -0700
committerYehuda Katz + Carl Lerche <ykatz+clerche@engineyard.com>2009-09-01 15:54:29 -0700
commit66a4585f8830d8f37e62a63df3d095b6284b2a35 (patch)
treefe57b170898264bb91eadbfe8d091cf7acf17b74 /actionpack/test/controller/view_paths_test.rb
parentbd53ebde72316abe2f4cdfd959a4e05bc0732b02 (diff)
downloadrails-66a4585f8830d8f37e62a63df3d095b6284b2a35.tar.gz
rails-66a4585f8830d8f37e62a63df3d095b6284b2a35.tar.bz2
rails-66a4585f8830d8f37e62a63df3d095b6284b2a35.zip
Fix the */* with Net::HTTP bug [#3100 state:resolved]
Diffstat (limited to 'actionpack/test/controller/view_paths_test.rb')
-rw-r--r--actionpack/test/controller/view_paths_test.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/actionpack/test/controller/view_paths_test.rb b/actionpack/test/controller/view_paths_test.rb
index c732d1c910..05d2c8407c 100644
--- a/actionpack/test/controller/view_paths_test.rb
+++ b/actionpack/test/controller/view_paths_test.rb
@@ -43,7 +43,7 @@ class ViewLoadPathsTest < ActionController::TestCase
end
def expand(array)
- array.map {|x| File.expand_path(x)}
+ array.map {|x| File.expand_path(x.to_s)}
end
def assert_paths(*paths)