Fix plumbing

This commit is contained in:
tarjei 2021-05-29 22:11:38 +02:00
parent 107822a5cc
commit ade591dd10
6 changed files with 22 additions and 14 deletions

View file

@ -181,11 +181,7 @@ fn list_drop() {
#[test]
fn list_swap() {
assert_evals_to!(
"List.swap [] 0 1",
RocList::from_slice(&[]),
RocList<i64>
);
assert_evals_to!("List.swap [] 0 1", RocList::from_slice(&[]), RocList<i64>);
assert_evals_to!(
"List.swap [ 0 ] 1 2",
RocList::from_slice(&[0]),