mirror of
https://github.com/roc-lang/roc.git
synced 2025-09-28 14:24:45 +00:00
Fix some tests that were expecting usize over u64
This commit is contained in:
parent
6a6c25d32d
commit
50ea255703
9 changed files with 27 additions and 22 deletions
|
@ -75,7 +75,7 @@ fn list_int_dealloc() {
|
|||
List.len [list, list, list]
|
||||
"#
|
||||
),
|
||||
usize,
|
||||
u64,
|
||||
&[
|
||||
Deallocated, // list
|
||||
Deallocated // result
|
||||
|
@ -114,7 +114,7 @@ fn list_str_dealloc() {
|
|||
List.len [list, list]
|
||||
"#
|
||||
),
|
||||
usize,
|
||||
u64,
|
||||
&[
|
||||
Deallocated, // s
|
||||
Deallocated, // list
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue