You are here

public function InstallerExistingConfigTest::setUpSettings in Drupal 9

Same name and namespace in other branches
  1. 8 core/tests/Drupal/FunctionalTests/Installer/InstallerExistingConfigTest.php \Drupal\FunctionalTests\Installer\InstallerExistingConfigTest::setUpSettings()

Installer step: Configure settings.

Overrides InstallerTestBase::setUpSettings

File

core/tests/Drupal/FunctionalTests/Installer/InstallerExistingConfigTest.php, line 25

Class

InstallerExistingConfigTest
Verifies that installing from existing configuration works.

Namespace

Drupal\FunctionalTests\Installer

Code

public function setUpSettings() {

  // The configuration is from a site installed in French.
  // So after selecting the profile the installer detects that the site must
  // be installed in French, thus we change the button translation.
  $this->translations['Save and continue'] = 'Enregistrer et continuer';
  parent::setUpSettings();
}