Skip to content

Commit

Permalink
drive-by: a small clippy fix in a test
Browse files Browse the repository at this point in the history
Signed-off-by: ljedrz <ljedrz@gmail.com>
  • Loading branch information
ljedrz committed Sep 20, 2023
1 parent 7e46add commit 5505945
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions src/parser.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand Down

0 comments on commit 5505945

Please sign in to comment.