From d1ee9c90b2885b1533401bd44a72834c65a6b89a Mon Sep 17 00:00:00 2001 From: Dan Knutson Date: Sun, 3 Oct 2021 11:07:11 -0500 Subject: [PATCH] fix copy/paste error in test --- compiler/test_gen/src/gen_list.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compiler/test_gen/src/gen_list.rs b/compiler/test_gen/src/gen_list.rs index ba9bbc1561..ce99435505 100644 --- a/compiler/test_gen/src/gen_list.rs +++ b/compiler/test_gen/src/gen_list.rs @@ -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 ); assert_evals_to!("List.dropAt [] 1", RocList::from_slice(&[]), RocList);