fix test needed to expect it to fail

This commit is contained in:
gluaxspeed 2021-02-10 12:49:18 -05:00
parent 42fb5ea635
commit 9812c76e1f
2 changed files with 2 additions and 2 deletions

View File

@ -1,3 +1,3 @@
function main (x: [i16; 2]) {
function main (x: [i16; 1]) {
console.log("{}", x);
}

View File

@ -91,5 +91,5 @@ fn test_input_array_dimensions_mismatch() {
let program = parse_program_with_input(program_string, input_string).unwrap();
assert_satisfied(program);
expect_fail(program);
}