Security update for Core, with self-updated composer
[yaffs-website] / web / core / modules / system / src / Tests / Update / RouterIndexOptimizationTest.php
diff --git a/web/core/modules/system/src/Tests/Update/RouterIndexOptimizationTest.php b/web/core/modules/system/src/Tests/Update/RouterIndexOptimizationTest.php
deleted file mode 100644 (file)
index 0bede3a..0000000
+++ /dev/null
@@ -1,36 +0,0 @@
-<?php
-
-namespace Drupal\system\Tests\Update;
-
-/**
- * Tests system_update_8002().
- *
- * @group Update
- */
-class RouterIndexOptimizationTest extends UpdatePathTestBase {
-  /**
-   * {@inheritdoc}
-   */
-  protected function setDatabaseDumpFiles() {
-    $this->databaseDumpFiles = [
-      __DIR__ . '/../../../tests/fixtures/update/drupal-8.bare.standard.php.gz',
-    ];
-  }
-
-  /**
-   * Ensures that the system_update_8002() runs as expected.
-   */
-  public function testUpdate() {
-    $this->runUpdates();
-    $database = $this->container->get('database');
-    // Removed index.
-    $this->assertFalse($database->schema()->indexExists(
-      'router', 'pattern_outline_fit'
-    ));
-    // Added index.
-    $this->assertTrue($database->schema()->indexExists(
-      'router', 'pattern_outline_parts'
-    ));
-  }
-
-}