From 2b643093b749863b9a9b064f5900450d1f1e2502 Mon Sep 17 00:00:00 2001 From: jeroendedauw Date: Wed, 27 Jun 2012 14:26:05 +0200 Subject: [PATCH] Add missing entry in autoloader for abstract test base class Change-Id: I5a151496f2e81c029c48882125d3fe9493eb62ea --- includes/AutoLoader.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/includes/AutoLoader.php b/includes/AutoLoader.php index 18beadbbe1..f421094c68 100644 --- a/includes/AutoLoader.php +++ b/includes/AutoLoader.php @@ -1065,6 +1065,9 @@ $wgAutoloadLocalClasses = array( 'DummyContentHandlerForTesting' => 'tests/phpunit/includes/ContentHandlerTest.php', 'DummyContentForTesting' => 'tests/phpunit/includes/ContentHandlerTest.php', + # tests/phpunit/includes/db + 'ORMRowTest' => 'tests/phpunit/includes/db/ORMRowTest.php', + # tests/parser 'ParserTest' => 'tests/parser/parserTest.inc', 'ParserTestParserHook' => 'tests/parser/parserTestsParserHook.php', -- 2.20.1