fix copy/paste error in test

This commit is contained in:
Dan Knutson 2021-10-03 11:07:11 -05:00
parent 65821d6a9f
commit d1ee9c90b2

View file

@ -207,7 +207,7 @@ fn list_drop_at() {
); );
assert_evals_to!( assert_evals_to!(
"List.dropAt [0, 0, 0] 3", "List.dropAt [0, 0, 0] 3",
RocList::from_slice(&[1, 2, 3]), RocList::from_slice(&[0, 0, 0]),
RocList<i64> RocList<i64>
); );
assert_evals_to!("List.dropAt [] 1", RocList::from_slice(&[]), RocList<i64>); assert_evals_to!("List.dropAt [] 1", RocList::from_slice(&[]), RocList<i64>);