mirror of
https://github.com/roc-lang/roc.git
synced 2025-09-27 05:49:08 +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
|
@ -26,7 +26,7 @@ fn u64_alias() {
|
|||
"
|
||||
),
|
||||
1,
|
||||
usize
|
||||
u64
|
||||
);
|
||||
}
|
||||
|
||||
|
@ -3076,7 +3076,7 @@ fn monomorphized_ints() {
|
|||
"
|
||||
),
|
||||
18,
|
||||
usize
|
||||
u64
|
||||
)
|
||||
}
|
||||
|
||||
|
@ -3095,7 +3095,7 @@ fn monomorphized_floats() {
|
|||
"
|
||||
),
|
||||
18,
|
||||
usize
|
||||
u64
|
||||
)
|
||||
}
|
||||
|
||||
|
@ -3119,7 +3119,7 @@ fn monomorphized_ints_names_dont_conflict() {
|
|||
"
|
||||
),
|
||||
18,
|
||||
usize
|
||||
u64
|
||||
)
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue