diff core/tests/Drupal/FunctionalTests/Installer/StandardInstallerTest.php @ 5:12f9dff5fda9 tip

Update to Drupal core 8.7.1
author Chris Cannam
date Thu, 09 May 2019 15:34:47 +0100
parents c75dbcec494b
children
line wrap: on
line diff
--- a/core/tests/Drupal/FunctionalTests/Installer/StandardInstallerTest.php	Thu Feb 28 13:11:55 2019 +0000
+++ b/core/tests/Drupal/FunctionalTests/Installer/StandardInstallerTest.php	Thu May 09 15:34:47 2019 +0100
@@ -50,8 +50,10 @@
    */
   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 @@
     $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);
   }