diff --git a/core/modules/field/src/Tests/FieldImportDeleteUninstallUiTest.php b/core/modules/field/src/Tests/FieldImportDeleteUninstallUiTest.php index 53998e7..776c13b 100644 --- a/core/modules/field/src/Tests/FieldImportDeleteUninstallUiTest.php +++ b/core/modules/field/src/Tests/FieldImportDeleteUninstallUiTest.php @@ -99,6 +99,7 @@ public function testImportDeleteUninstall() { // fields. unset($core_extension['module']['text']); $staging->write('core.extension', $core_extension); + $staging->delete("text.settings"); $this->drupalGet('admin/config/development/configuration'); $this->assertText('This synchronization will delete data from the fields: entity_test.field_tel, entity_test.field_text.'); // Delete all the text fields in staging, entity_test_install() adds quite @@ -108,6 +109,7 @@ public function testImportDeleteUninstall() { if ($info['type'] == 'text') { $staging->delete("field.storage.$entity_type.$field_name"); $staging->delete("field.field.$entity_type.$entity_type.$field_name"); + $staging->delete("core.entity_form_display.$entity_type.$entity_type.default"); } } }