Updated Drupal to 8.6. This goes with the following updates because it's possible...
[yaffs-website] / web / core / modules / views / tests / src / Unit / ViewExecutableTest.php
index b6d3c912b01aecd72ebf2109971ca07dde72356a..a86ead11563acf00b7c79f77bb94cbed58694837 100644 (file)
@@ -295,7 +295,7 @@ class ViewExecutableTest extends UnitTestCase {
     unset($view->display_handler);
     $expected = [
       'test_hook__test_view',
-      'test_hook'
+      'test_hook',
     ];
     $this->assertEquals($expected, $view->buildThemeFunctions('test_hook'));
 
@@ -307,7 +307,7 @@ class ViewExecutableTest extends UnitTestCase {
       'test_hook__two',
       'test_hook__and_three',
       'test_hook__test_view',
-      'test_hook'
+      'test_hook',
     ];
     $this->assertEquals($expected, $view->buildThemeFunctions('test_hook'));
 
@@ -323,7 +323,7 @@ class ViewExecutableTest extends UnitTestCase {
       'test_hook__test_view__default2',
       'test_hook__default2',
       'test_hook__test_view',
-      'test_hook'
+      'test_hook',
     ];
     $this->assertEquals($expected, $view->buildThemeFunctions('test_hook'));
   }