From d063193476df821638ee10bbaabf79f0f8558d7f Mon Sep 17 00:00:00 2001 From: Markus Unterwaditzer Date: Mon, 28 Oct 2024 15:29:45 +0100 Subject: [PATCH] fixup --- tests/html5lib_tree_builder.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/html5lib_tree_builder.rs b/tests/html5lib_tree_builder.rs index 2a806e1..16ba5e1 100644 --- a/tests/html5lib_tree_builder.rs +++ b/tests/html5lib_tree_builder.rs @@ -224,7 +224,7 @@ fn serialize(buf: &mut String, indent: usize, handle: Handle) { NodeData::Text { ref contents } => { buf.push('"'); buf.push_str(&contents.borrow()); - buf.push('\n'); + buf.push_str("\"\n"); } NodeData::Comment { ref contents } => {