From 5869463c21893acc592572276db1dc1572f03552 Mon Sep 17 00:00:00 2001 From: arty Date: Wed, 25 Oct 2023 14:25:53 -0700 Subject: [PATCH] Fix drift --- src/tests/compiler/compiler.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/tests/compiler/compiler.rs b/src/tests/compiler/compiler.rs index e7ac4799..232c4c70 100644 --- a/src/tests/compiler/compiler.rs +++ b/src/tests/compiler/compiler.rs @@ -236,6 +236,7 @@ fn compile_test_15() { &"(mod #(a b c) (- (+ a c) b))".to_string(), &"(100 20 . 10)".to_string(), true, + false, ) .unwrap(); assert_eq!(result.to_string(), "90".to_string()); @@ -248,6 +249,7 @@ fn compile_test_16() { &"(mod #(a b c) (- (+ a c) b))".to_string(), &"#(100 20 10)".to_string(), true, + false, ) .unwrap(); assert_eq!(result.to_string(), "90".to_string());