re-enable test

This commit is contained in:
Folkert 2022-05-06 16:47:29 +02:00
parent e2b7056e20
commit ae90f1ec7e
No known key found for this signature in database
GPG Key ID: 1F17F6FFD112B97C

View File

@ -2644,7 +2644,11 @@ fn list_sort_with() {
#[test]
#[cfg(any(feature = "gen-llvm"))]
fn list_sort_asc() {
// assert_evals_to!( "List.sortAsc []", RocList::<i64>::from_slice(&[]), RocList<i64>);
assert_evals_to!(
"List.sortAsc []",
RocList::<i64>::from_slice(&[]),
RocList<i64>
);
assert_evals_to!(
"List.sortAsc [ 4,3,2,1 ]",
RocList::from_slice(&[1, 2, 3, 4]),