diff --git a/src/parser.rs b/src/parser.rs index 951562d..cfbe9a5 100644 --- a/src/parser.rs +++ b/src/parser.rs @@ -935,10 +935,7 @@ mod tests { #[test] fn empty_comment() { - assert_eq!( - comment_tag(b"#\nxxx"), - Result::Ok(("xxx".as_bytes(), None)) - ); + assert_eq!(comment_tag(b"#\nxxx"), Result::Ok(("xxx".as_bytes(), None))); } #[test]