Skip to content

Commit

Permalink
Fix drift
Browse files Browse the repository at this point in the history
  • Loading branch information
prozacchiwawa committed Oct 25, 2023
1 parent 34937b5 commit 5869463
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/tests/compiler/compiler.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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());
Expand All @@ -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());
Expand Down

0 comments on commit 5869463

Please sign in to comment.