diff --git a/core/tests/Drupal/FunctionalTests/Installer/StandardInstallerTest.php b/core/tests/Drupal/FunctionalTests/Installer/StandardInstallerTest.php index 722e3a9c64..48ebb9a801 100644 --- a/core/tests/Drupal/FunctionalTests/Installer/StandardInstallerTest.php +++ b/core/tests/Drupal/FunctionalTests/Installer/StandardInstallerTest.php @@ -50,8 +50,10 @@ protected function curlExec($curl_options, $redirect = FALSE) { */ public function testStandardConfig() { $skipped_config = []; - // FunctionalTestSetupTrait::installParameters() uses - // simpletest@example.com as mail address. + // FunctionalTestSetupTrait::installParameters() uses Drupal as site name + // and simpletest@example.com as mail address. + $skipped_config['system.site'][] = 'name: Drupal'; + $skipped_config['system.site'][] = 'mail: simpletest@example.com'; $skipped_config['contact.form.feedback'][] = '- simpletest@example.com'; // \Drupal\filter\Entity\FilterFormat::toArray() drops the roles of filter // formats. @@ -61,6 +63,8 @@ public function testStandardConfig() { $skipped_config['filter.format.full_html'][] = '- administrator'; $skipped_config['filter.format.restricted_html'][] = 'roles:'; $skipped_config['filter.format.restricted_html'][] = '- anonymous'; + // The site UUID is set dynamically for each installation. + $skipped_config['system.site'][] = 'uuid: ' . $this->config('system.site')->get('uuid'); $this->assertInstalledConfig($skipped_config); }