Further Drupal 8.6.4 changes. Some core files were not committed before a commit...
[yaffs-website] / web / core / modules / views / tests / src / Functional / Plugin / ViewsBulkTest.php
index 0ca6f8775e690679e09f91971b71d7550c738cfb..e3faa88405fd8cbb5fa8eb017b9b56f9658873ba 100644 (file)
@@ -41,7 +41,7 @@ class ViewsBulkTest extends ViewTestBase {
     $node_1 = $this->drupalCreateNode([
       'type' => 'page',
       'title' => 'The first node',
-      'changed' => \Drupal::time()->getRequestTime() - 180
+      'changed' => \Drupal::time()->getRequestTime() - 180,
     ]);
 
     // Login as administrator and go to admin/content.
@@ -53,7 +53,7 @@ class ViewsBulkTest extends ViewTestBase {
     $node_2 = $this->drupalCreateNode([
       'type' => 'page',
       'title' => 'The second node',
-      'changed' => \Drupal::time()->getRequestTime() - 120
+      'changed' => \Drupal::time()->getRequestTime() - 120,
     ]);
 
     // Now click 'Apply to selected items' and assert the first node is selected
@@ -70,9 +70,9 @@ class ViewsBulkTest extends ViewTestBase {
 
     // Create third node now that the admin overview has been rendered.
     $node_3 = $this->drupalCreateNode([
-        'type' => 'page',
-        'title' => 'The third node']
-    );
+      'type' => 'page',
+      'title' => 'The third node',
+    ]);
 
     // Now click 'Apply to selected items' and assert the second node is
     // selected on the confirm form.