AP test files does no more need to be alphabetically sorted here

This commit is contained in:
Akira Matsuda 2014-08-26 16:38:22 +09:00
parent f7d09faac9
commit e969c92846
1 changed files with 1 additions and 4 deletions

View File

@ -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