summaryrefslogtreecommitdiff
path: root/modules/gallery_unit_test/controllers
diff options
context:
space:
mode:
Diffstat (limited to 'modules/gallery_unit_test/controllers')
-rw-r--r--modules/gallery_unit_test/controllers/test.php2
1 files changed, 2 insertions, 0 deletions
diff --git a/modules/gallery_unit_test/controllers/test.php b/modules/gallery_unit_test/controllers/test.php
index 0761dc12..6e00acb5 100644
--- a/modules/gallery_unit_test/controllers/test.php
+++ b/modules/gallery_unit_test/controllers/test.php
@@ -61,6 +61,7 @@ class Test_Controller extends Controller {
// We probably don't want to uninstall and reinstall the core every time, but let's start off
// this way. Uninstall modules first and core last. Ignore errors during uninstall.
try {
+ comment_installer::uninstall();
auth_installer::uninstall();
user_installer::uninstall();
core_installer::uninstall();
@@ -70,6 +71,7 @@ class Test_Controller extends Controller {
core_installer::install();
user_installer::install();
auth_installer::install();
+ comment_installer::install();
print new Unit_Test();
}