Skip to content

Commit

Permalink
Revert unneceassry changes
Browse files Browse the repository at this point in the history
  • Loading branch information
alexpott committed Jan 10, 2024
1 parent 135e4d5 commit 4393399
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 4 deletions.
4 changes: 1 addition & 3 deletions tests/src/Functional/Installer/ThunderInstallerTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand All @@ -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());

Expand Down
1 change: 0 additions & 1 deletion thunder.profile
Original file line number Diff line number Diff line change
Expand Up @@ -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'] = [
Expand Down

0 comments on commit 4393399

Please sign in to comment.