mirror of
https://github.com/roc-lang/roc.git
synced 2025-10-01 15:51:12 +00:00
fix copy/paste error in test
This commit is contained in:
parent
65821d6a9f
commit
d1ee9c90b2
1 changed files with 1 additions and 1 deletions
|
@ -207,7 +207,7 @@ fn list_drop_at() {
|
|||
);
|
||||
assert_evals_to!(
|
||||
"List.dropAt [0, 0, 0] 3",
|
||||
RocList::from_slice(&[1, 2, 3]),
|
||||
RocList::from_slice(&[0, 0, 0]),
|
||||
RocList<i64>
|
||||
);
|
||||
assert_evals_to!("List.dropAt [] 1", RocList::from_slice(&[]), RocList<i64>);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue