fix wasm test

This commit is contained in:
Folkert 2022-07-25 19:13:43 +02:00
parent ed71ab3c8f
commit 67c736948b
No known key found for this signature in database
GPG key ID: 1F17F6FFD112B97C

View file

@ -2999,8 +2999,8 @@ fn list_find_empty_layout() {
List.findFirst [] \_ -> True List.findFirst [] \_ -> True
"# "#
), ),
0, RocResult::err(()),
i64 RocResult<(), ()>
); );
assert_evals_to!( assert_evals_to!(
@ -3009,8 +3009,8 @@ fn list_find_empty_layout() {
List.findLast [] \_ -> True List.findLast [] \_ -> True
"# "#
), ),
0, RocResult::err(()),
i64 RocResult<(), ()>
); );
} }