diff --git a/core/config/schema/core.data_types.schema.yml b/core/config/schema/core.data_types.schema.yml index ef68a3e..4283543 100644 --- a/core/config/schema/core.data_types.schema.yml +++ b/core/config/schema/core.data_types.schema.yml @@ -638,6 +638,9 @@ field.integer.field_settings: suffix: type: string label: 'Suffix' + size: + type: string + label: 'Size' field.integer.value: type: sequence diff --git a/core/modules/field/src/Tests/Number/NumberFieldTest.php b/core/modules/field/src/Tests/Number/NumberFieldTest.php index 994e96a..56e0b34 100644 --- a/core/modules/field/src/Tests/Number/NumberFieldTest.php +++ b/core/modules/field/src/Tests/Number/NumberFieldTest.php @@ -49,7 +49,7 @@ function testNumberDecimalField() { 'entity_type' => 'entity_test', 'type' => 'decimal', 'settings' => array( - 'precision' => 8, 'scale' => 4, 'decimal_separator' => '.', + 'precision' => 8, 'scale' => 4, ) ))->save(); entity_create('field_config', array( diff --git a/core/modules/image/src/Tests/ImageFieldDisplayTest.php b/core/modules/image/src/Tests/ImageFieldDisplayTest.php index c49af3c..2111d32 100644 --- a/core/modules/image/src/Tests/ImageFieldDisplayTest.php +++ b/core/modules/image/src/Tests/ImageFieldDisplayTest.php @@ -175,7 +175,6 @@ function testImageFieldSettings() { 'max_resolution' => '100x100', 'min_resolution' => '10x10', 'title_field' => 1, - 'description' => '[site:name]_description', ); $widget_settings = array( 'preview_image_style' => 'medium',