Updated Drupal to 8.6. This goes with the following updates because it's possible...
[yaffs-website] / web / core / modules / system / src / Tests / Installer / MinimalInstallerTest.php
diff --git a/web/core/modules/system/src/Tests/Installer/MinimalInstallerTest.php b/web/core/modules/system/src/Tests/Installer/MinimalInstallerTest.php
deleted file mode 100644 (file)
index eb6778d..0000000
+++ /dev/null
@@ -1,28 +0,0 @@
-<?php
-
-namespace Drupal\system\Tests\Installer;
-
-use Drupal\KernelTests\AssertConfigTrait;
-
-/**
- * Tests the interactive installer installing the minimal profile.
- *
- * @group Installer
- */
-class MinimalInstallerTest extends ConfigAfterInstallerTestBase {
-
-  use AssertConfigTrait;
-
-  /**
-   * {@inheritdoc}
-   */
-  protected $profile = 'minimal';
-
-  /**
-   * Ensures that the exported minimal configuration is up to date.
-   */
-  public function testMinimalConfig() {
-    $this->assertInstalledConfig([]);
-  }
-
-}