Updated Drupal to 8.6. This goes with the following updates because it's possible...
[yaffs-website] / web / core / modules / rest / tests / src / Functional / EntityResource / User / UserXmlAnonTest.php
diff --git a/web/core/modules/rest/tests/src/Functional/EntityResource/User/UserXmlAnonTest.php b/web/core/modules/rest/tests/src/Functional/EntityResource/User/UserXmlAnonTest.php
deleted file mode 100644 (file)
index 8f1d483..0000000
+++ /dev/null
@@ -1,34 +0,0 @@
-<?php
-
-namespace Drupal\Tests\rest\Functional\EntityResource\User;
-
-use Drupal\Tests\rest\Functional\AnonResourceTestTrait;
-use Drupal\Tests\rest\Functional\EntityResource\XmlEntityNormalizationQuirksTrait;
-
-/**
- * @group rest
- */
-class UserXmlAnonTest extends UserResourceTestBase {
-
-  use AnonResourceTestTrait;
-  use XmlEntityNormalizationQuirksTrait;
-
-  /**
-   * {@inheritdoc}
-   */
-  protected static $format = 'xml';
-
-  /**
-   * {@inheritdoc}
-   */
-  protected static $mimeType = 'text/xml; charset=UTF-8';
-
-  /**
-   * {@inheritdoc}
-   */
-  public function testPatchDxForSecuritySensitiveBaseFields() {
-    // Deserialization of the XML format is not supported.
-    $this->markTestSkipped();
-  }
-
-}