Updated Drupal to 8.6. This goes with the following updates because it's possible...
[yaffs-website] / web / core / tests / Drupal / KernelTests / Core / Field / FieldSettingsTest.php
index 590a96cd5f8e8d85c081b19b4b5a4124821a796c..9229a60b0b5c8f3a43e8a31af8647e55714511fe 100644 (file)
@@ -82,7 +82,7 @@ class FieldSettingsTest extends EntityKernelTestBase {
     $field_storage = FieldStorageConfig::create([
       'field_name' => 'test_field',
       'entity_type' => 'entity_test',
-      'type' => 'test_field'
+      'type' => 'test_field',
     ]);
 
     // Check that the default settings have been populated.
@@ -109,11 +109,11 @@ class FieldSettingsTest extends EntityKernelTestBase {
     $field_storage = FieldStorageConfig::create([
       'field_name' => 'test_field',
       'entity_type' => 'entity_test',
-      'type' => 'test_field'
+      'type' => 'test_field',
     ]);
     $field = FieldConfig::create([
       'field_storage' => $field_storage,
-      'bundle' => 'entity_test'
+      'bundle' => 'entity_test',
     ]);
     // Note: FieldConfig does not populate default settings until the config
     // is saved.