From 43933994ac43cf1d8b90dfd09f911f6ec1369875 Mon Sep 17 00:00:00 2001 From: Alex Pott Date: Wed, 10 Jan 2024 16:53:21 +0000 Subject: [PATCH] Revert unneceassry changes --- tests/src/Functional/Installer/ThunderInstallerTest.php | 4 +--- thunder.profile | 1 - 2 files changed, 1 insertion(+), 4 deletions(-) diff --git a/tests/src/Functional/Installer/ThunderInstallerTest.php b/tests/src/Functional/Installer/ThunderInstallerTest.php index 4a729a4c4..ac86df95e 100644 --- a/tests/src/Functional/Installer/ThunderInstallerTest.php +++ b/tests/src/Functional/Installer/ThunderInstallerTest.php @@ -43,8 +43,6 @@ protected function setUpProfile(): void { */ protected function setUpSite(): void { $edit = $this->translatePostValues($this->parameters['forms']['install_configure_form']); - $edit['enable_update_status_module'] = FALSE; - $edit['enable_update_status_emails'] = FALSE; $this->submitForm($edit, $this->translations['Save and continue']); // If we've got to this point the site is installed using the regular // installation workflow. @@ -65,8 +63,8 @@ protected function setUpModules(): void { * Confirms that the installation succeeded. */ public function testInstalled(): void { - $this->assertSession()->statusCodeEquals(200); $this->assertSession()->addressEquals('user/1'); + $this->assertSession()->statusCodeEquals(200); // Confirm that we are logged-in after installation. $this->assertSession()->pageTextContains($this->rootUser->getAccountName()); diff --git a/thunder.profile b/thunder.profile index ef5aa6654..7f93e62bf 100644 --- a/thunder.profile +++ b/thunder.profile @@ -36,7 +36,6 @@ function thunder_install_tasks(array &$install_state): array { $tasks['thunder_module_install'] = [ 'display_name' => t('Install additional modules'), 'type' => 'batch', - 'run' => empty($install_state['thunder_install_batch']) ? INSTALL_TASK_SKIP : INSTALL_TASK_RUN_IF_NOT_COMPLETED, ]; } $tasks['thunder_finish_installation'] = [