Updated Drupal to 8.6. This goes with the following updates because it's possible...
[yaffs-website] / web / core / modules / forum / tests / src / Functional / Views / ForumIntegrationTest.php
index 19c000012d7cf6410e8154276c06ec0c503abb7d..992500e1f9d5a0242d1a0a464852c86bc5170156 100644 (file)
@@ -34,7 +34,6 @@ class ForumIntegrationTest extends ViewTestBase {
     ViewTestData::createTestViews(get_class($this), ['forum_test_views']);
   }
 
-
   /**
    * Tests the integration.
    */
@@ -72,17 +71,17 @@ class ForumIntegrationTest extends ViewTestBase {
     $expected_result[] = [
       'nid' => $nodes[0]->id(),
       'sticky' => NodeInterface::STICKY,
-      'comment_count' => 1.
+      'comment_count' => 1.,
     ];
     $expected_result[] = [
       'nid' => $nodes[1]->id(),
       'sticky' => NodeInterface::NOT_STICKY,
-      'comment_count' => 2.
+      'comment_count' => 2.,
     ];
     $expected_result[] = [
       'nid' => $nodes[2]->id(),
       'sticky' => NodeInterface::NOT_STICKY,
-      'comment_count' => 3.
+      'comment_count' => 3.,
     ];
     $column_map = [
       'nid' => 'nid',