Skip to content

Commit 607a093

Browse files
committed
refactor: reformat code with rust fmt
1 parent 889d6b5 commit 607a093

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

rust/src/lib.rs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -768,7 +768,10 @@ mod tests {
768768

769769
#[test]
770770
fn handles_special_xml_chars() {
771-
assert_eq!(wrap_cdata("<tag & \"attr\">"), "<![CDATA[<tag & \"attr\">]]>");
771+
assert_eq!(
772+
wrap_cdata("<tag & \"attr\">"),
773+
"<![CDATA[<tag & \"attr\">]]>"
774+
);
772775
}
773776
}
774777

0 commit comments

Comments
 (0)