Verified Commit f2eae5f2 authored by godotislate's avatar godotislate
Browse files

fix: #3556506 Respect allowed_formats settings in...

fix: #3556506 Respect allowed_formats settings in \Drupal\text\Plugin\Field\FieldType\TextItemBase::applyDefaultValue

By: penyaskito
By: wim leers
By: smustgrave
By: larowlan
By: thoward216
By: edwardsay
By: shitalb
By: godotislate
(cherry picked from commit e09f5a64)
parent f0cc91d7
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -22,6 +22,7 @@ abstract class FieldKernelTestBase extends KernelTestBase {
    'user',
    'system',
    'field',
    'filter',
    'text',
    'entity_test',
    'field_test',
+1 −0
Original line number Diff line number Diff line
@@ -25,6 +25,7 @@ class MenuUiNodeTypeTest extends KernelTestBase {
   */
  protected static $modules = [
    'field',
    'filter',
    'menu_ui',
    'node',
    'system',
+1 −1
Original line number Diff line number Diff line
@@ -20,7 +20,7 @@ class MigrateBundleTest extends MigrateTestBase {
  /**
   * {@inheritdoc}
   */
  protected static $modules = ['taxonomy', 'text', 'user', 'system'];
  protected static $modules = ['filter', 'taxonomy', 'text', 'user', 'system'];

  /**
   * {@inheritdoc}
+1 −0
Original line number Diff line number Diff line
@@ -25,6 +25,7 @@ class MigrateLookupTest extends MigrateTestBase {
    'system',
    'node',
    'field',
    'filter',
    'user',
    'text',
    'migrate_lookup_test',
+8 −1
Original line number Diff line number Diff line
@@ -22,7 +22,14 @@ class MigrateRollbackTest extends MigrateTestBase {
  /**
   * {@inheritdoc}
   */
  protected static $modules = ['field', 'taxonomy', 'text', 'user', 'system'];
  protected static $modules = [
    'field',
    'filter',
    'taxonomy',
    'text',
    'user',
    'system',
  ];

  /**
   * {@inheritdoc}
Loading