diff options
author | Matthew Draper <matthew@trebex.net> | 2015-03-06 04:39:20 +1030 |
---|---|---|
committer | Matthew Draper <matthew@trebex.net> | 2015-03-06 04:39:20 +1030 |
commit | e46202139647b458b8c3d5eb3a0dff29474159d3 (patch) | |
tree | 7590ad5dce9b1076a7066f3908645c77b025d7bf /actionpack | |
parent | b5eb0b6cc3d01255b0f04092eee6046ce0b68dba (diff) | |
download | rails-e46202139647b458b8c3d5eb3a0dff29474159d3.tar.gz rails-e46202139647b458b8c3d5eb3a0dff29474159d3.tar.bz2 rails-e46202139647b458b8c3d5eb3a0dff29474159d3.zip |
Revert "For now, we will keep sorting the tests."
This reverts commit 7025d7769dc53f0a3ffab8b537727ef3fee367fc.
Diffstat (limited to 'actionpack')
-rw-r--r-- | actionpack/Rakefile | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/actionpack/Rakefile b/actionpack/Rakefile index 4b60b77759..3bd27f8d64 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 |