From 5505945c8e77173a6005725c5901a0ea4215579f Mon Sep 17 00:00:00 2001 From: ljedrz Date: Wed, 20 Sep 2023 15:07:11 +0200 Subject: [PATCH] drive-by: a small clippy fix in a test Signed-off-by: ljedrz --- src/parser.rs | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/src/parser.rs b/src/parser.rs index aa2f98f..d72866d 100644 --- a/src/parser.rs +++ b/src/parser.rs @@ -381,10 +381,7 @@ mod tests { #[test] fn alternative_lambda_parsing() { - assert_eq!( - parse(r#"\\\2(321)"#, DeBruijn), - parse("λλλ2(321)", DeBruijn) - ) + assert_eq!(parse(r"\\\2(321)", DeBruijn), parse("λλλ2(321)", DeBruijn)) } #[test]