From 50aaf9a9d548e469ba49bd2d480fd69fb2e92730 Mon Sep 17 00:00:00 2001 From: Sabina Talipova Date: Tue, 31 Oct 2023 15:41:06 +1300 Subject: [PATCH] MNT 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 d7f350a36..51fc0085e 100644 --- a/tests/php/Forms/HTMLEditor/HTMLEditorFieldTest.php +++ b/tests/php/Forms/HTMLEditor/HTMLEditorFieldTest.php @@ -255,7 +255,7 @@ EOS $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');