From f6af8acbfe0582b73b79648e154c361e7d449336 Mon Sep 17 00:00:00 2001 From: Vadim Getmanshchuk Date: Thu, 30 Nov 2023 22:18:32 -0600 Subject: [PATCH] ran rustfmt --- src/parser.rs | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) 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]