From f393adf1fcc5a011ba97c5360b168e25d3c82e30 Mon Sep 17 00:00:00 2001 From: Sabina Talipova Date: Fri, 3 Nov 2023 08:48:43 +1300 Subject: [PATCH] MNT Fix incorrect expected value in HTMLEditorFieldTest --- 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 51fc0085e..e09d5d7d4 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');