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 / Vocabulary / VocabularyJsonAnonTest.php
diff --git a/web/core/modules/rest/tests/src/Functional/EntityResource/Vocabulary/VocabularyJsonAnonTest.php b/web/core/modules/rest/tests/src/Functional/EntityResource/Vocabulary/VocabularyJsonAnonTest.php
deleted file mode 100644 (file)
index 40f26ab..0000000
+++ /dev/null
@@ -1,32 +0,0 @@
-<?php
-
-namespace Drupal\Tests\rest\Functional\EntityResource\Vocabulary;
-
-use Drupal\Tests\rest\Functional\AnonResourceTestTrait;
-
-/**
- * @group rest
- */
-class VocabularyJsonAnonTest extends VocabularyResourceTestBase {
-
-  use AnonResourceTestTrait;
-
-  /**
-   * {@inheritdoc}
-   */
-  protected static $format = 'json';
-
-  /**
-   * {@inheritdoc}
-   */
-  protected static $mimeType = 'application/json';
-
-  /**
-   * Disable the GET test coverage due to bug in taxonomy module.
-   * @todo Fix in https://www.drupal.org/node/2805281: remove this override.
-   */
-  public function testGet() {
-    $this->markTestSkipped();
-  }
-
-}