diff options
author | Jeremy Kemper <jeremy@bitsweat.net> | 2010-07-07 12:03:01 -0700 |
---|---|---|
committer | Jeremy Kemper <jeremy@bitsweat.net> | 2010-07-07 12:03:08 -0700 |
commit | 81f398b804a68c8090c0fbea20f50c0ae253b708 (patch) | |
tree | e7fee0d699f8065ed7f217c93c2e035af305ceca /actionpack/test/abstract | |
parent | 64c75d6618b6bc21576e95ceb31467d1984ecb33 (diff) | |
download | rails-81f398b804a68c8090c0fbea20f50c0ae253b708.tar.gz rails-81f398b804a68c8090c0fbea20f50c0ae253b708.tar.bz2 rails-81f398b804a68c8090c0fbea20f50c0ae253b708.zip |
Fix setting helpers_path to a string or pathname
Diffstat (limited to 'actionpack/test/abstract')
-rw-r--r-- | actionpack/test/abstract/helper_test.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/actionpack/test/abstract/helper_test.rb b/actionpack/test/abstract/helper_test.rb index 0cdf5c2298..15c27501f2 100644 --- a/actionpack/test/abstract/helper_test.rb +++ b/actionpack/test/abstract/helper_test.rb @@ -1,6 +1,6 @@ require 'abstract_unit' -ActionController::Base.helpers_path = [File.dirname(__FILE__) + '/../fixtures/helpers'] +ActionController::Base.helpers_path = File.expand_path('../../fixtures/helpers', __FILE__) module AbstractController module Testing |