aboutsummaryrefslogtreecommitdiff
path: root/test/serialization.tm
diff options
context:
space:
mode:
authorBruce Hill <bruce@bruce-hill.com>2025-09-21 17:44:08 -0400
committerBruce Hill <bruce@bruce-hill.com>2025-09-21 17:44:08 -0400
commitc941b9a3325228eba404455afea7ccea0da45095 (patch)
treed4ca88c6848ac2e6ceee635bb87add87ba6d2322 /test/serialization.tm
parent1cec086a6034ad546977cae7aeaf4bb876d21970 (diff)
Fix tests
Diffstat (limited to 'test/serialization.tm')
-rw-r--r--test/serialization.tm3
1 files changed, 1 insertions, 2 deletions
diff --git a/test/serialization.tm b/test/serialization.tm
index 0e5be1ae..5653d1f9 100644
--- a/test/serialization.tm
+++ b/test/serialization.tm
@@ -38,8 +38,7 @@ func main()
>> obj := @[10, 20]
>> bytes := obj.serialized()
>> roundtrip := deserialize(bytes -> @[Int])
- >> roundtrip == obj
- = no
+ assert roundtrip != obj
assert roundtrip[] == obj[]
do