Security update for Core, with self-updated composer
[yaffs-website] / web / core / modules / comment / src / Tests / Views / CommentRowTest.php
diff --git a/web/core/modules/comment/src/Tests/Views/CommentRowTest.php b/web/core/modules/comment/src/Tests/Views/CommentRowTest.php
deleted file mode 100644 (file)
index d73811e..0000000
+++ /dev/null
@@ -1,29 +0,0 @@
-<?php
-
-namespace Drupal\comment\Tests\Views;
-
-/**
- * Tests the comment row plugin.
- *
- * @group comment
- */
-class CommentRowTest extends CommentTestBase {
-
-  /**
-   * Views used by this test.
-   *
-   * @var array
-   */
-  public static $testViews = ['test_comment_row'];
-
-  /**
-   * Test comment row.
-   */
-  public function testCommentRow() {
-    $this->drupalGet('test-comment-row');
-
-    $result = $this->xpath('//article[contains(@class, "comment")]');
-    $this->assertEqual(1, count($result), 'One rendered comment found.');
-  }
-
-}