mirror of
https://github.com/roc-lang/roc.git
synced 2025-08-04 04:08:19 +00:00
Update fmt tests to not use Nat
This commit is contained in:
parent
521cb45c99
commit
02bc54292f
1 changed files with 12 additions and 12 deletions
|
@ -2434,7 +2434,7 @@ mod test_fmt {
|
|||
r"
|
||||
foo :
|
||||
Str,
|
||||
Nat
|
||||
U64
|
||||
-> Bool
|
||||
|
||||
foo
|
||||
|
@ -2444,7 +2444,7 @@ mod test_fmt {
|
|||
expr_formats_same(indoc!(
|
||||
r"
|
||||
foo :
|
||||
Str, Int, Nat -> Bool
|
||||
Str, Int, U64 -> Bool
|
||||
|
||||
foo
|
||||
"
|
||||
|
@ -2455,7 +2455,7 @@ mod test_fmt {
|
|||
r"
|
||||
foo :
|
||||
Str,
|
||||
Nat -> Bool
|
||||
U64 -> Bool
|
||||
|
||||
foo
|
||||
"
|
||||
|
@ -2464,7 +2464,7 @@ mod test_fmt {
|
|||
r"
|
||||
foo :
|
||||
Str,
|
||||
Nat
|
||||
U64
|
||||
-> Bool
|
||||
|
||||
foo
|
||||
|
@ -2478,7 +2478,7 @@ mod test_fmt {
|
|||
foo :
|
||||
|
||||
Str,
|
||||
Nat
|
||||
U64
|
||||
|
||||
-> Bool
|
||||
|
||||
|
@ -2489,7 +2489,7 @@ mod test_fmt {
|
|||
r"
|
||||
foo :
|
||||
Str,
|
||||
Nat
|
||||
U64
|
||||
-> Bool
|
||||
|
||||
foo
|
||||
|
@ -2502,7 +2502,7 @@ mod test_fmt {
|
|||
r"
|
||||
foo :
|
||||
|
||||
Str, Nat -> Bool
|
||||
Str, U64 -> Bool
|
||||
|
||||
foo
|
||||
"
|
||||
|
@ -2510,7 +2510,7 @@ mod test_fmt {
|
|||
indoc!(
|
||||
r"
|
||||
foo :
|
||||
Str, Nat -> Bool
|
||||
Str, U64 -> Bool
|
||||
|
||||
foo
|
||||
"
|
||||
|
@ -5618,9 +5618,9 @@ mod test_fmt {
|
|||
r"
|
||||
Dict k v := {
|
||||
metadata : List I8,
|
||||
dataIndices : List Nat,
|
||||
dataIndices : List U64,
|
||||
data : List (T k v),
|
||||
size : Nat,
|
||||
size : U64,
|
||||
} where k implements Hash & Eq
|
||||
|
||||
a
|
||||
|
@ -6010,11 +6010,11 @@ mod test_fmt {
|
|||
r"
|
||||
when l1 is
|
||||
[
|
||||
..
|
||||
..
|
||||
as
|
||||
rest
|
||||
]
|
||||
as
|
||||
as
|
||||
l2
|
||||
->
|
||||
f rest
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue