From f71661336be747f74aa2389b054b3017063db08d Mon Sep 17 00:00:00 2001 From: camer0n Date: Wed, 6 Dec 2023 13:11:35 -0800 Subject: [PATCH] Issue #4501 Improve test. --- e107_tests/tests/unit/db_verifyTest.php | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/e107_tests/tests/unit/db_verifyTest.php b/e107_tests/tests/unit/db_verifyTest.php index e0f5befe4..3f25689ca 100644 --- a/e107_tests/tests/unit/db_verifyTest.php +++ b/e107_tests/tests/unit/db_verifyTest.php @@ -1096,7 +1096,11 @@ EOF; public function testRunFix() { $sql = e107::getDb(); - + + if(!e107::isInstalled('rss')) + { + e107::getPlugin()->install('rss_menu'); + } // Prepare table. $sql->gen('ALTER TABLE `#rss` CONVERT TO CHARACTER SET utf8 COLLATE utf8_general_ci;'); $sql->gen('SHOW CREATE TABLE `#rss`');