From d18aa9bf830a374a5f51c6933673aa8892769b5e Mon Sep 17 00:00:00 2001 From: arty Date: Sat, 6 Jul 2024 01:05:43 -0700 Subject: [PATCH] fmt + clippy --- src/tests/classic/run.rs | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/tests/classic/run.rs b/src/tests/classic/run.rs index 62b012c5..410e4060 100644 --- a/src/tests/classic/run.rs +++ b/src/tests/classic/run.rs @@ -2435,7 +2435,8 @@ fn test_include_zero_bin() { "run".to_string(), "-i".to_string(), "resources/tests".to_string(), - "(mod (X) (include *standard-cl-23.1*) (embed-file lz bin lz.bin) (concat 1 lz))".to_string() + "(mod (X) (include *standard-cl-23.1*) (embed-file lz bin lz.bin) (concat 1 lz))" + .to_string(), ]); assert_eq!(program, "(2 (1 14 (1 . 1) 2) (4 (1 . 0x0001) 1))"); } @@ -2446,7 +2447,7 @@ fn test_include_zero_bin_pre_fix() { "run".to_string(), "-i".to_string(), "resources/tests".to_string(), - "(mod (X) (include *standard-cl-23*) (embed-file lz bin lz.bin) (concat 1 lz))".to_string() + "(mod (X) (include *standard-cl-23*) (embed-file lz bin lz.bin) (concat 1 lz))".to_string(), ]); assert_eq!(program, "(2 (1 14 (1 . 1) 2) (4 (1 . 1) 1))"); }