From 781b0b8fab61f8695e397abb9642c69beea9b993 Mon Sep 17 00:00:00 2001 From: Alireza Mohaghegh Date: Tue, 24 Sep 2024 17:45:47 -0400 Subject: [PATCH] Run fmt --- crates/deno_task_shell/src/grammar.pest | 1 - crates/tests/src/lib.rs | 1 - 2 files changed, 2 deletions(-) diff --git a/crates/deno_task_shell/src/grammar.pest b/crates/deno_task_shell/src/grammar.pest index 892acf3..1a6d9a7 100644 --- a/crates/deno_task_shell/src/grammar.pest +++ b/crates/deno_task_shell/src/grammar.pest @@ -215,7 +215,6 @@ unary_post_arithmetic_expr = !{ (parentheses_expr | VARIABLE | NUMBER) ~ post_arithmetic_op } - pre_arithmetic_op= _{ unary_plus | unary_minus | logical_not | bitwise_not } diff --git a/crates/tests/src/lib.rs b/crates/tests/src/lib.rs index afde640..8c638bf 100644 --- a/crates/tests/src/lib.rs +++ b/crates/tests/src/lib.rs @@ -892,7 +892,6 @@ async fn arithmetic() { .assert_stdout("0\n") .run() .await; - } #[tokio::test]