aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorBruce Hill <bruce@bruce-hill.com>2025-10-05 18:05:07 -0400
committerBruce Hill <bruce@bruce-hill.com>2025-10-05 18:05:07 -0400
commitc74fba540448f1d4b1aec4de8f3d9ffc395fdde0 (patch)
tree67f2f62e2ccf1889ebbeef725a6782b8ba9f5912 /test
parent398d2cab6988e20c59e7037ff7ef551540339abb (diff)
Deprecate `deserialize` keyword and `.serialized()` method
Diffstat (limited to 'test')
-rw-r--r--test/serialization.tm2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/serialization.tm b/test/serialization.tm
index 18858d0e..39c1624f 100644
--- a/test/serialization.tm
+++ b/test/serialization.tm
@@ -65,7 +65,7 @@ func main()
>> obj := MyEnum.Two(123, "OKAY")
>> bytes : [Byte] = obj
>> roundtrip : MyEnum = bytes
- assert deserialize(bytes -> MyEnum) == obj
+ assert roundtrip == obj
do
>> obj : Text? = "Hello"