mirror of
https://github.com/roc-lang/roc.git
synced 2025-09-27 22:09:09 +00:00
Fix some tests
This commit is contained in:
parent
92f94a00b4
commit
4f44209bb8
1 changed files with 12 additions and 3 deletions
|
@ -471,10 +471,16 @@ mod test {
|
|||
|
||||
When it failed, these variables had these values:
|
||||
|
||||
vec1 : { x : U8, y : U8 }
|
||||
vec1 : {
|
||||
x : U8,
|
||||
y : U8,
|
||||
}
|
||||
vec1 = { x: 1, y: 2 }
|
||||
|
||||
vec2 : { x : U8, y : U8 }
|
||||
vec2 : {
|
||||
x : U8,
|
||||
y : U8,
|
||||
}
|
||||
vec2 = { x: 4, y: 8 }
|
||||
"#
|
||||
),
|
||||
|
@ -584,7 +590,10 @@ mod test {
|
|||
|
||||
When it failed, these variables had these values:
|
||||
|
||||
a : { brillist : Str, utopia : Str }
|
||||
a : {
|
||||
brillist : Str,
|
||||
utopia : Str,
|
||||
}
|
||||
a = { brillist: "Profundum et fundamentum", utopia: "Astra mortemque praestare gradatim" }
|
||||
"#
|
||||
),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue