From 6aa0c918d02dbf9e5ea33b6959ee2d144942a68b Mon Sep 17 00:00:00 2001 From: Diego Ximenes Date: Mon, 23 Dec 2024 09:58:47 -0300 Subject: [PATCH] Fix lint --- arbitrator/tools/stylus_benchmark/src/scenario.rs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/arbitrator/tools/stylus_benchmark/src/scenario.rs b/arbitrator/tools/stylus_benchmark/src/scenario.rs index d08c749467..348678ed69 100644 --- a/arbitrator/tools/stylus_benchmark/src/scenario.rs +++ b/arbitrator/tools/stylus_benchmark/src/scenario.rs @@ -32,8 +32,7 @@ fn write_wat_beginning(wat: &mut Vec) { wat.write_all(b" (func (export \"user_entrypoint\") (param i32) (result i32)\n") .unwrap(); - wat.write_all(b" call $start_benchmark\n") - .unwrap(); + wat.write_all(b" call $start_benchmark\n").unwrap(); wat.write_all(b" (loop $loop\n").unwrap(); }