diff options
Diffstat (limited to 'integration_tests')
-rw-r--r-- | integration_tests/tests/test_html5lib.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/integration_tests/tests/test_html5lib.rs b/integration_tests/tests/test_html5lib.rs index a0e934f..52df539 100644 --- a/integration_tests/tests/test_html5lib.rs +++ b/integration_tests/tests/test_html5lib.rs @@ -138,8 +138,8 @@ fn run_test_inner<R: Reader>( Token::Comment(comment) => actual.tokens.push(TestToken::Comment(comment.data)), Token::Doctype(doctype) => actual.tokens.push(TestToken::Doctype { name: Some(doctype.name).filter(|name| !name.is_empty()), - public_id: doctype.public_identifier, - system_id: doctype.system_identifier, + public_id: doctype.public_id, + system_id: doctype.system_id, force_quirks: doctype.force_quirks, }), }; |