diff --git a/compiler/test_gen/src/gen_list.rs b/compiler/test_gen/src/gen_list.rs index 366a886c58..f09a2740e6 100644 --- a/compiler/test_gen/src/gen_list.rs +++ b/compiler/test_gen/src/gen_list.rs @@ -1432,7 +1432,6 @@ fn list_concat_second_list_is_empty() { RocList::from_slice(&[12, 13]), RocList ); - } #[test] @@ -1453,6 +1452,12 @@ fn list_concat_two_non_empty_lists() { RocList::from_slice(&[1, 2, 3, 4]), RocList ); + + assert_evals_to!( + "List.concat [34, 43] [64, 55, 66]", + RocList::from_slice(&[34, 43, 64, 55, 66]), + RocList + ); } #[test]