From 2fc4be68a6b65074726bee493920040da0e6e04d Mon Sep 17 00:00:00 2001 From: Michael Koziarski Date: Sun, 2 Sep 2007 23:50:51 +0000 Subject: [PATCH] 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 --- railties/lib/test_help.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/railties/lib/test_help.rb b/railties/lib/test_help.rb index 61f64972c43f9..a7401e6e933e6 100644 --- a/railties/lib/test_help.rb +++ b/railties/lib/test_help.rb @@ -13,5 +13,5 @@ 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