Skip to content
This repository has been archived by the owner on Jun 22, 2020. It is now read-only.

Commit

Permalink
Revert workaround for wrong translations
Browse files Browse the repository at this point in the history
  • Loading branch information
dbosen authored and ol0lll committed Oct 2, 2019
1 parent 3017836 commit 4c2dd12
Showing 1 changed file with 0 additions and 22 deletions.
22 changes: 0 additions & 22 deletions tests/src/Functional/Installer/ThunderInstallerGermanTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -74,26 +74,4 @@ protected function continueOnExpectedWarnings($expected_warnings = []) {
$this->checkForMetaRefresh();
}

/**
* Confirms that the installation succeeded.
*/
public function testInstalled() {
$this->assertSession()->addressEquals('?tour=1');
$this->assertSession()->statusCodeEquals(200);
// Confirm that we are logged-in after installation.
$this->assertSession()->pageTextContains($this->rootUser->getAccountName());

// Ensure demo content is installed.
$this->assertSession()->pageTextContains('Burda Launches Open-Source CMS Thunder');
$this->assertSession()->pageTextContains('Come to DrupalCon New Orleans');

/** @var \Drupal\Core\Database\Query\SelectInterface $query */
$query = \Drupal::database()->select('watchdog', 'w')
->condition('severity', 4, '<');

// Check that there are no warnings in the log after installation.
$this->assertEquals($query->countQuery()->execute()->fetchField(), 2);

}

}

0 comments on commit 4c2dd12

Please sign in to comment.