Fix some tests

This commit is contained in:
Richard Feldman 2023-01-11 23:09:40 -05:00
parent 92f94a00b4
commit 4f44209bb8
No known key found for this signature in database
GPG key ID: F1F21AA5B1D9E43B

View file

@ -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" }
"#
),