MNT Fix incorrect expected value in HTMLEditorFieldTest

This commit is contained in:
Sabina Talipova 2023-11-03 08:48:43 +13:00
parent 07bb6eddaf
commit f393adf1fc
1 changed files with 1 additions and 1 deletions

View File

@ -255,7 +255,7 @@ EOS
$editor->setEditorConfig($restrictedConfig);
$expectedHtmlString = '<p>standard text</p>Header';
$htmlValue = '<p>standard text</p><table><th></th><tr><td>Header</td></tr><tbody></tbody></table>';
$htmlValue = '<p>standard text</p><table><tbody><tr><th></th></tr><tr><td>Header</td></tr></tbody><tbody></tbody></table>';
$editor->setValue($htmlValue);
$editor->saveInto($obj);
$this->assertEquals($expectedHtmlString, $obj->Content, 'Table is not removed');