wasm: Bring back an accidentally deleted test case

And put it in a more appropriately named test
This commit is contained in:
Brian Carroll 2022-06-26 21:35:35 +01:00
parent 48d9265c1e
commit cae49f1cb5
No known key found for this signature in database
GPG key ID: 9CF4E3BF9C4722C7

View file

@ -1432,7 +1432,6 @@ fn list_concat_second_list_is_empty() {
RocList::from_slice(&[12, 13]),
RocList<i64>
);
}
#[test]
@ -1453,6 +1452,12 @@ fn list_concat_two_non_empty_lists() {
RocList::from_slice(&[1, 2, 3, 4]),
RocList<i64>
);
assert_evals_to!(
"List.concat [34, 43] [64, 55, 66]",
RocList::from_slice(&[34, 43, 64, 55, 66]),
RocList<i64>
);
}
#[test]