Browse Source

changing test order

L10nTest defines DEFAULT_LANGUAGE causing CakeTimeTest to fail
Rachman Chavik 14 years ago
parent
commit
9b62e7ddab
1 changed files with 1 additions and 1 deletions
  1. 1 1
      lib/Cake/Test/Case/AllTestsTest.php

+ 1 - 1
lib/Cake/Test/Case/AllTestsTest.php

@@ -48,13 +48,13 @@ class AllTests extends PHPUnit_Framework_TestSuite {
 		$suite->addTestFile($path . 'AllEventTest.php');
 		$suite->addTestFile($path . 'AllHelpersTest.php');
 		$suite->addTestFile($path . 'AllLogTest.php');
-		$suite->addTestFile($path . 'AllI18nTest.php');
 		$suite->addTestFile($path . 'Model' . DS . 'ModelTest.php');
 		$suite->addTestFile($path . 'AllRoutingTest.php');
 		$suite->addTestFile($path . 'AllNetworkTest.php');
 		$suite->addTestFile($path . 'AllTestSuiteTest.php');;
 		$suite->addTestFile($path . 'AllUtilityTest.php');
 		$suite->addTestFile($path . 'AllViewTest.php');
+		$suite->addTestFile($path . 'AllI18nTest.php');
 		return $suite;
 	}
 }