From: skodak Date: Thu, 4 Dec 2008 15:06:28 +0000 (+0000) Subject: MDL-17522 no db specific tests - they all must work the same! X-Git-Url: http://git.mjollnir.org/gw?a=commitdiff_plain;h=00552218394b95cc0a057289e8245e937130da4e;p=moodle.git MDL-17522 no db specific tests - they all must work the same! --- diff --git a/admin/report/unittest/dbtest.php b/admin/report/unittest/dbtest.php index dd58e15235..f59eda70e5 100644 --- a/admin/report/unittest/dbtest.php +++ b/admin/report/unittest/dbtest.php @@ -80,12 +80,6 @@ if (!empty($tests)) { $test->addTestFile($CFG->libdir.'/dml/simpletest/testdml.php'); $test->addTestFile($CFG->libdir.'/ddl/simpletest/testddl.php'); - // Look for DB-specific tests (testing sql_ helper functions) - $dbfilename = $CFG->libdir.'/dml/simpletest/test_'.get_class($database).'.php'; - if (file_exists($dbfilename)) { - $test->addTestFile($dbfilename); - } - // Make the reporter, which is what displays the results. $reporter = new ExHtmlReporter($showpasses);