Security update for Core, with self-updated composer
[yaffs-website] / web / core / modules / system / src / Tests / Installer / InstallerTest.php
index 01422a5cbbc7a255f6943233d63711aeb7bf1ada..be51057ad80655e0f32a293d950111c05673c3fd 100644 (file)
@@ -25,6 +25,10 @@ class InstallerTest extends InstallerTestBase {
     $this->assertRaw(t('Congratulations, you installed @drupal!', [
       '@drupal' => drupal_install_profile_distribution_name(),
     ]));
+
+    // Ensure that the timezone is correct for sites under test after installing
+    // interactively.
+    $this->assertEqual($this->config('system.date')->get('timezone.default'), 'Australia/Sydney');
   }
 
   /**