Updated Drupal to 8.6. This goes with the following updates because it's possible...
[yaffs-website] / web / core / modules / user / src / Tests / UserAdminSettingsFormTest.php
diff --git a/web/core/modules/user/src/Tests/UserAdminSettingsFormTest.php b/web/core/modules/user/src/Tests/UserAdminSettingsFormTest.php
deleted file mode 100644 (file)
index b774111..0000000
+++ /dev/null
@@ -1,48 +0,0 @@
-<?php
-
-namespace Drupal\user\Tests;
-
-use Drupal\system\Tests\System\SystemConfigFormTestBase;
-use Drupal\user\AccountSettingsForm;
-
-/**
- * Configuration object user.mail and user.settings save test.
- *
- * @group user
- */
-class UserAdminSettingsFormTest extends SystemConfigFormTestBase {
-
-  protected function setUp() {
-    parent::setUp();
-
-    $this->form = AccountSettingsForm::create($this->container);
-    $this->values = [
-      'anonymous' => [
-        '#value' => $this->randomString(10),
-        '#config_name' => 'user.settings',
-        '#config_key' => 'anonymous',
-      ],
-      'user_mail_cancel_confirm_body' => [
-        '#value' => $this->randomString(),
-        '#config_name' => 'user.mail',
-        '#config_key' => 'cancel_confirm.body',
-      ],
-      'user_mail_cancel_confirm_subject' => [
-        '#value' => $this->randomString(20),
-        '#config_name' => 'user.mail',
-        '#config_key' => 'cancel_confirm.subject',
-      ],
-      'register_pending_approval_admin_body' => [
-        '#value' => $this->randomString(),
-        '#config_name' => 'user.mail',
-        '#config_key' => 'register_pending_approval_admin.body',
-      ],
-      'register_pending_approval_admin_subject' => [
-        '#value' => $this->randomString(20),
-        '#config_name' => 'user.mail',
-        '#config_key' => 'register_pending_approval_admin.subject',
-      ],
-    ];
-  }
-
-}