Updated Drupal to 8.6. This goes with the following updates because it's possible...
[yaffs-website] / web / core / modules / system / src / Tests / Installer / SiteNameTest.php
diff --git a/web/core/modules/system/src/Tests/Installer/SiteNameTest.php b/web/core/modules/system/src/Tests/Installer/SiteNameTest.php
deleted file mode 100644 (file)
index 081dfb1..0000000
+++ /dev/null
@@ -1,39 +0,0 @@
-<?php
-
-namespace Drupal\system\Tests\Installer;
-
-use Drupal\simpletest\WebTestBase;
-
-/**
- * Tests that the site name can be set during a non-interactive installation.
- *
- * @group Installer
- */
-class SiteNameTest extends WebTestBase {
-
-  /**
-   * The site name to be used when testing.
-   *
-   * @var string
-   */
-  protected $siteName;
-
-  /**
-   * {@inheritdoc}
-   */
-  protected function installParameters() {
-    $this->siteName = $this->randomMachineName();
-    $parameters = parent::installParameters();
-    $parameters['forms']['install_configure_form']['site_name'] = $this->siteName;
-    return $parameters;
-  }
-
-  /**
-   * Tests that the desired site name appears on the page after installation.
-   */
-  public function testSiteName() {
-    $this->drupalGet('');
-    $this->assertRaw($this->siteName, 'The site name that was set during the installation appears on the front page after installation.');
-  }
-
-}