tests: Fix test_misc_deny_internal_entity_closing_doctype_issue_317 case 2

"&#37;e1;" resolves to "%e1;" which resolves to "]><d/>".
Now with c20b758c33 reverted, test case
"inputTwo" has an actual chance of being a false positive parse.
This commit is contained in:
Sebastian Pipping 2024-11-05 00:05:24 +01:00
parent ef485e96a6
commit 80c2512d71

View file

@ -333,7 +333,7 @@ START_TEST(test_misc_deny_internal_entity_closing_doctype_issue_317) {
"\n"
"%e;";
const char *const inputTwo = "<!DOCTYPE d [\n"
"<!ENTITY % e1 ']><d/>'><!ENTITY % e2 '&e1;'>\n"
"<!ENTITY % e1 ']><d/>'><!ENTITY % e2 '&#37;e1;'>\n"
"\n"
"%e2;";
const char *const inputThree = "<!DOCTYPE d [\n"