Security update for Core, with self-updated composer
[yaffs-website] / web / core / modules / user / src / Tests / Update / UserUpdateEmailToken.php
diff --git a/web/core/modules/user/src/Tests/Update/UserUpdateEmailToken.php b/web/core/modules/user/src/Tests/Update/UserUpdateEmailToken.php
deleted file mode 100644 (file)
index d321ee0..0000000
+++ /dev/null
@@ -1,35 +0,0 @@
-<?php
-
-namespace Drupal\user\Tests\Update;
-
-use Drupal\system\Tests\Update\UpdatePathTestBase;
-
-/**
- * Tests user email token upgrade path.
- *
- * @group Update
- */
-class UserUpdateEmailToken extends UpdatePathTestBase {
-
-  /**
-   * {@inheritdoc}
-   */
-  protected function setDatabaseDumpFiles() {
-    $this->databaseDumpFiles = [
-      __DIR__ . '/../../../../system/tests/fixtures/update/drupal-8.bare.standard.php.gz',
-      __DIR__ . '/../../../tests/fixtures/update/drupal-8.user-email-token-2587275.php',
-    ];
-  }
-
-  /**
-   * Tests that email token in status_blocked of user.mail is updated.
-   */
-  public function testEmailToken() {
-    $mail = \Drupal::config('user.mail')->get('status_blocked');
-    $this->assertTrue(strpos($mail['body'], '[site:account-name]'));
-    $this->runUpdates();
-    $mail = \Drupal::config('user.mail')->get('status_blocked');
-    $this->assertFalse(strpos($mail['body'], '[site:account-name]'));
-  }
-
-}