diff options
author | Yehuda Katz + Carl Lerche <ykatz+clerche@engineyard.com> | 2009-06-15 11:50:11 -0700 |
---|---|---|
committer | Yehuda Katz + Carl Lerche <ykatz+clerche@engineyard.com> | 2009-06-15 11:50:11 -0700 |
commit | 80d1e2778860d1825d749aad274e70e0ea810bc6 (patch) | |
tree | 2f188f5aac09b205efeb18dfc867002560be3d84 /actionpack | |
parent | a63caa4c0c2a8aabc13c354a9193ebd9c5e8ba73 (diff) | |
download | rails-80d1e2778860d1825d749aad274e70e0ea810bc6.tar.gz rails-80d1e2778860d1825d749aad274e70e0ea810bc6.tar.bz2 rails-80d1e2778860d1825d749aad274e70e0ea810bc6.zip |
Fix the fixture path
Diffstat (limited to 'actionpack')
-rw-r--r-- | actionpack/test/abstract_unit.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/actionpack/test/abstract_unit.rb b/actionpack/test/abstract_unit.rb index dab5061414..a785722d4f 100644 --- a/actionpack/test/abstract_unit.rb +++ b/actionpack/test/abstract_unit.rb @@ -40,7 +40,7 @@ I18n.backend.store_translations 'da', {} I18n.backend.store_translations 'pt-BR', {} ORIGINAL_LOCALES = I18n.available_locales.map {|locale| locale.to_s }.sort -FIXTURE_LOAD_PATH = File.join(File.dirname(__FILE__), '../fixtures') +FIXTURE_LOAD_PATH = File.join(File.dirname(__FILE__), 'fixtures') module ActionView class TestCase |