Updated to Drupal 8.5. Core Media not yet in use.
[yaffs-website] / web / core / modules / system / src / Tests / Installer / StandardInstallerTest.php
index b0ceef9427af41fafb9c75b4ea5954f186c0274d..3132be2ae57fff326a973fbfa2990287e3c50f0e 100644 (file)
@@ -18,11 +18,8 @@ class StandardInstallerTest extends ConfigAfterInstallerTestBase {
    * Ensures that the user page is available after installation.
    */
   public function testInstaller() {
-    // Verify that the confirmation message appears.
-    require_once \Drupal::root() . '/core/includes/install.inc';
-    $this->assertRaw(t('Congratulations, you installed @drupal!', [
-      '@drupal' => drupal_install_profile_distribution_name(),
-    ]));
+    // Verify that the Standard install profile's default frontpage appears.
+    $this->assertRaw('No front page content has been created yet.');
   }
 
   /**