tests/functional2/lang: Refactor test outputs

How long do we have the value printer already? It's time to stop
concatenating strings like it's 2005

Change-Id: I3f5074de2439a1ad78af94de877bb141bc9f1d82
This commit is contained in:
piegames
2025-11-24 16:31:29 +01:00
parent 0167bf56f5
commit 45e4bec59e
27 changed files with 195 additions and 244 deletions
@@ -1 +1 @@
"abcxyzDDDDEFijk"
[ "abc" "xyz" "DDD" "DEF" "ijk" ]
@@ -9,8 +9,10 @@ let
j = {x, y, z, ...}: x + y + z;
in
f {x = "a"; y = "b"; z = "c";} +
g {x = "x"; y = "y"; z = "z";} +
h {x = "D";} +
h {x = "D"; y = "E"; z = "F";} +
j {x = "i"; y = "j"; z = "k"; bla = "bla"; foo = "bar";}
[
(f {x = "a"; y = "b"; z = "c";})
(g {x = "x"; y = "y"; z = "z";})
(h {x = "D";})
(h {x = "D"; y = "E"; z = "F";})
(j {x = "i"; y = "j"; z = "k"; bla = "bla"; foo = "bar";})
]