You are here

protected function InstallerExistingConfigSyncDirectoryProfileMismatchTest::setUpSettings in Drupal 10

Installer step: Configure settings.

Overrides InstallerTestBase::setUpSettings

File

core/tests/Drupal/FunctionalTests/Installer/InstallerExistingConfigSyncDirectoryProfileMismatchTest.php, line 37

Class

InstallerExistingConfigSyncDirectoryProfileMismatchTest
Verifies that installing from existing configuration works.

Namespace

Drupal\FunctionalTests\Installer

Code

protected function setUpSettings() {

  // Cause a profile mismatch by hacking the URL.
  $this
    ->drupalGet(str_replace($this->profile, 'minimal', $this
    ->getUrl()));
  parent::setUpSettings();
}