diff --git a/tests/phpunit/tests/html-api/wpHtmlTagProcessor.php b/tests/phpunit/tests/html-api/wpHtmlTagProcessor.php index dfb9b16442045..88762ddbb60c4 100644 --- a/tests/phpunit/tests/html-api/wpHtmlTagProcessor.php +++ b/tests/phpunit/tests/html-api/wpHtmlTagProcessor.php @@ -114,7 +114,8 @@ public static function data_has_self_closing_flag() { 'Self-closing flag after attribute' => array( '
', true ), 'Slash inside unquoted attribute value' => array( '
', false ), 'Slash only unquoted attribute value' => array( '
', false ), - 'Attribute "=" with value ""' => array( '
', false ), + 'Attribute "=" with value ""' => array( '
', true ), + 'Attribute "=" with value "/"' => array( '
', false ), 'Self-closing flag after quoted attribute' => array( '
', true ), 'Self-closing flag after boolean attribute' => array( '
', true ), 'Ignored "/" and whitespace' => array( '
', false ),