test classes autoloading path was broken
authorAntoine Musso <hashar@free.fr>
Sat, 10 Nov 2012 20:39:54 +0000 (21:39 +0100)
committerAntoine Musso <hashar@free.fr>
Sat, 10 Nov 2012 20:39:54 +0000 (21:39 +0100)
Since 7c6c05a, the ORMTableTest and SeleniumTestConstants classes points
to a wrong path. The reason is the variable name has not been renamed
for them.

Change-Id: I430031d0d00a8f0da047184285d1797a145bd389

tests/TestsAutoLoader.php

index 48a758e..01d7b2a 100644 (file)
@@ -46,10 +46,10 @@ $wgAutoloadClasses += array(
        'WikiPageTest' => "$testDir/phpunit/includes/WikiPageTest.php",
 
        //db
-       'ORMTableTest' => "$testFolder/phpunit/includes/db/ORMTableTest.php",
+       'ORMTableTest' => "$testDir/phpunit/includes/db/ORMTableTest.php",
 
        //Selenium
-       'SeleniumTestConstants' => "$testFolder/selenium/SeleniumTestConstants.php",
+       'SeleniumTestConstants' => "$testDir/selenium/SeleniumTestConstants.php",
 
        # tests/phpunit/includes/api
        'ApiFormatTestBase' => "$testDir/phpunit/includes/api/format/ApiFormatTestBase.php",