mirror of
https://github.com/roc-lang/roc.git
synced 2025-09-26 21:39:07 +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"
|
r"
|
||||||
foo :
|
foo :
|
||||||
Str,
|
Str,
|
||||||
Nat
|
U64
|
||||||
-> Bool
|
-> Bool
|
||||||
|
|
||||||
foo
|
foo
|
||||||
|
@ -2444,7 +2444,7 @@ mod test_fmt {
|
||||||
expr_formats_same(indoc!(
|
expr_formats_same(indoc!(
|
||||||
r"
|
r"
|
||||||
foo :
|
foo :
|
||||||
Str, Int, Nat -> Bool
|
Str, Int, U64 -> Bool
|
||||||
|
|
||||||
foo
|
foo
|
||||||
"
|
"
|
||||||
|
@ -2455,7 +2455,7 @@ mod test_fmt {
|
||||||
r"
|
r"
|
||||||
foo :
|
foo :
|
||||||
Str,
|
Str,
|
||||||
Nat -> Bool
|
U64 -> Bool
|
||||||
|
|
||||||
foo
|
foo
|
||||||
"
|
"
|
||||||
|
@ -2464,7 +2464,7 @@ mod test_fmt {
|
||||||
r"
|
r"
|
||||||
foo :
|
foo :
|
||||||
Str,
|
Str,
|
||||||
Nat
|
U64
|
||||||
-> Bool
|
-> Bool
|
||||||
|
|
||||||
foo
|
foo
|
||||||
|
@ -2478,7 +2478,7 @@ mod test_fmt {
|
||||||
foo :
|
foo :
|
||||||
|
|
||||||
Str,
|
Str,
|
||||||
Nat
|
U64
|
||||||
|
|
||||||
-> Bool
|
-> Bool
|
||||||
|
|
||||||
|
@ -2489,7 +2489,7 @@ mod test_fmt {
|
||||||
r"
|
r"
|
||||||
foo :
|
foo :
|
||||||
Str,
|
Str,
|
||||||
Nat
|
U64
|
||||||
-> Bool
|
-> Bool
|
||||||
|
|
||||||
foo
|
foo
|
||||||
|
@ -2502,7 +2502,7 @@ mod test_fmt {
|
||||||
r"
|
r"
|
||||||
foo :
|
foo :
|
||||||
|
|
||||||
Str, Nat -> Bool
|
Str, U64 -> Bool
|
||||||
|
|
||||||
foo
|
foo
|
||||||
"
|
"
|
||||||
|
@ -2510,7 +2510,7 @@ mod test_fmt {
|
||||||
indoc!(
|
indoc!(
|
||||||
r"
|
r"
|
||||||
foo :
|
foo :
|
||||||
Str, Nat -> Bool
|
Str, U64 -> Bool
|
||||||
|
|
||||||
foo
|
foo
|
||||||
"
|
"
|
||||||
|
@ -5618,9 +5618,9 @@ mod test_fmt {
|
||||||
r"
|
r"
|
||||||
Dict k v := {
|
Dict k v := {
|
||||||
metadata : List I8,
|
metadata : List I8,
|
||||||
dataIndices : List Nat,
|
dataIndices : List U64,
|
||||||
data : List (T k v),
|
data : List (T k v),
|
||||||
size : Nat,
|
size : U64,
|
||||||
} where k implements Hash & Eq
|
} where k implements Hash & Eq
|
||||||
|
|
||||||
a
|
a
|
||||||
|
@ -6010,11 +6010,11 @@ mod test_fmt {
|
||||||
r"
|
r"
|
||||||
when l1 is
|
when l1 is
|
||||||
[
|
[
|
||||||
..
|
..
|
||||||
as
|
as
|
||||||
rest
|
rest
|
||||||
]
|
]
|
||||||
as
|
as
|
||||||
l2
|
l2
|
||||||
->
|
->
|
||||||
f rest
|
f rest
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue