From 440ed2818566f1258c7240703009f7f5332ae171 Mon Sep 17 00:00:00 2001 From: Antoine Musso Date: Sat, 10 Nov 2012 21:39:54 +0100 Subject: [PATCH] test classes autoloading path was broken 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 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/TestsAutoLoader.php b/tests/TestsAutoLoader.php index 48a758e18e..01d7b2ad8c 100644 --- a/tests/TestsAutoLoader.php +++ b/tests/TestsAutoLoader.php @@ -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", -- 2.20.1