From 67d747fa59881e8e4f0c4c5ab271b67bfd95773e Mon Sep 17 00:00:00 2001 From: Sabina Talipova Date: Tue, 31 Oct 2023 15:41:06 +1300 Subject: [PATCH] FIX Table header closed tag position --- tests/php/Forms/HTMLEditor/HTMLEditorFieldTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/php/Forms/HTMLEditor/HTMLEditorFieldTest.php b/tests/php/Forms/HTMLEditor/HTMLEditorFieldTest.php index d7f350a360d..51fc0085e7e 100644 --- a/tests/php/Forms/HTMLEditor/HTMLEditorFieldTest.php +++ b/tests/php/Forms/HTMLEditor/HTMLEditorFieldTest.php @@ -255,7 +255,7 @@ public function testFieldConfigSanitization() $editor->setEditorConfig($restrictedConfig); $expectedHtmlString = '

standard text

Header'; - $htmlValue = '

standard text

Header
'; + $htmlValue = '

standard text

Header
'; $editor->setValue($htmlValue); $editor->saveInto($obj); $this->assertEquals($expectedHtmlString, $obj->Content, 'Table is not removed');