diff --git a/compiler/test_gen/src/gen_list.rs b/compiler/test_gen/src/gen_list.rs index 3c2a1ae3cf..c492936129 100644 --- a/compiler/test_gen/src/gen_list.rs +++ b/compiler/test_gen/src/gen_list.rs @@ -2644,7 +2644,11 @@ fn list_sort_with() { #[test] #[cfg(any(feature = "gen-llvm"))] fn list_sort_asc() { - // assert_evals_to!( "List.sortAsc []", RocList::::from_slice(&[]), RocList); + assert_evals_to!( + "List.sortAsc []", + RocList::::from_slice(&[]), + RocList + ); assert_evals_to!( "List.sortAsc [ 4,3,2,1 ]", RocList::from_slice(&[1, 2, 3, 4]),