From e969c928463e329fd6529ac59cad96385c538ffb Mon Sep 17 00:00:00 2001 From: Akira Matsuda Date: Tue, 26 Aug 2014 16:38:22 +0900 Subject: [PATCH] AP test files does no more need to be alphabetically sorted here --- actionpack/Rakefile | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/actionpack/Rakefile b/actionpack/Rakefile index d12213a2d8..e24169dab5 100644 --- a/actionpack/Rakefile +++ b/actionpack/Rakefile @@ -9,10 +9,7 @@ task :default => :test # Run the unit tests Rake::TestTask.new do |t| t.libs << 'test' - - # make sure we include the tests in alphabetical order as on some systems - # this will not happen automatically and the tests (as a whole) will error - t.test_files = test_files.sort + t.test_files = test_files t.warning = true t.verbose = true