diff options
Diffstat (limited to 'test/serialization.tm')
| -rw-r--r-- | test/serialization.tm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/serialization.tm b/test/serialization.tm index 8e1a4a1c..fd1ac743 100644 --- a/test/serialization.tm +++ b/test/serialization.tm @@ -43,9 +43,9 @@ func main() assert roundtrip[] == obj[] do - >> obj := {"A"=10, "B"=20; fallback={"C"=30}} + >> obj := {"A":10, "B":20; fallback={"C":30}} >> bytes := obj.serialized() - >> roundtrip := deserialize(bytes -> {Text=Int}) + >> roundtrip := deserialize(bytes -> {Text:Int}) assert roundtrip == obj assert roundtrip.fallback == obj.fallback |
