Skip to content

Commit 01fc841

Browse files
committed
compiles
1 parent c5cae9e commit 01fc841

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

crates/lean_compiler/tests/test_compiler.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ fn test_wrong_n_returned_vars_1() {
4848
return 0;
4949
}
5050
"#;
51-
compile_and_run(program.to_string(), (&[], &[]), DEFAULT_NO_VEC_RUNTIME_MEMORY, false);
51+
compile_and_run(program.to_string(), (&[], &[]), false);
5252
}
5353

5454
#[test]
@@ -63,7 +63,7 @@ fn test_wrong_n_returned_vars_2() {
6363
return 0, 1;
6464
}
6565
"#;
66-
compile_and_run(program.to_string(), (&[], &[]), DEFAULT_NO_VEC_RUNTIME_MEMORY, false);
66+
compile_and_run(program.to_string(), (&[], &[]), false);
6767
}
6868

6969
#[test]

0 commit comments

Comments
 (0)