mirror of
https://github.com/roc-lang/roc.git
synced 2025-10-03 16:44:33 +00:00
wasm: Bring back an accidentally deleted test case
And put it in a more appropriately named test
This commit is contained in:
parent
48d9265c1e
commit
cae49f1cb5
1 changed files with 6 additions and 1 deletions
|
@ -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]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue