diff options
author | Michael Koziarski <michael@koziarski.com> | 2007-09-02 23:50:51 +0000 |
---|---|---|
committer | Michael Koziarski <michael@koziarski.com> | 2007-09-02 23:50:51 +0000 |
commit | 2fc4be68a6b65074726bee493920040da0e6e04d (patch) | |
tree | 1a676e600dcae0e68466ccd43ad9eb23156a426e /railties | |
parent | ed09b621bd0ca0377de8114bcd918ab3aba38abd (diff) | |
download | rails-2fc4be68a6b65074726bee493920040da0e6e04d.tar.gz rails-2fc4be68a6b65074726bee493920040da0e6e04d.tar.bz2 rails-2fc4be68a6b65074726bee493920040da0e6e04d.zip |
Remove duplication in test_help.rb Closes #3328 [jarkko]
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@7395 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'railties')
-rw-r--r-- | railties/lib/test_help.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/railties/lib/test_help.rb b/railties/lib/test_help.rb index 61f64972c4..a7401e6e93 100644 --- a/railties/lib/test_help.rb +++ b/railties/lib/test_help.rb @@ -13,5 +13,5 @@ Test::Unit::TestCase.fixture_path = RAILS_ROOT + "/test/fixtures/" ActionController::IntegrationTest.fixture_path = Test::Unit::TestCase.fixture_path def create_fixtures(*table_names) - Fixtures.create_fixtures(RAILS_ROOT + "/test/fixtures", table_names) + Fixtures.create_fixtures(Test::Unit::TestCase.fixture_path, table_names) end |