aboutsummaryrefslogtreecommitdiff
path: root/test/enums.tm
diff options
context:
space:
mode:
authorBruce Hill <bruce@bruce-hill.com>2025-07-11 16:05:54 -0400
committerBruce Hill <bruce@bruce-hill.com>2025-07-11 16:05:54 -0400
commit4153c0af9d4dcc43c0a67cc446a313c46ee5ac33 (patch)
tree246154cdf41f487f6d2da2c6b6df5aba50531ab6 /test/enums.tm
parenta51d48201b5245dc2cc2bfb00e0ac8e7b52203d9 (diff)
parent46b0dbc5a448249ddc9a6ce20465f0fa41de6d64 (diff)
Merge branch 'main' into decimalsdecimals
Diffstat (limited to 'test/enums.tm')
-rw-r--r--test/enums.tm6
1 files changed, 2 insertions, 4 deletions
diff --git a/test/enums.tm b/test/enums.tm
index 901298a8..080e5d97 100644
--- a/test/enums.tm
+++ b/test/enums.tm
@@ -29,8 +29,7 @@ func main()
>> one.Two
= no
- >> Foo.One(10) == Foo.One(10)
- = yes
+ assert Foo.One(10) == Foo.One(10)
>> Foo.One(10) == Foo.Zero
= no
@@ -38,8 +37,7 @@ func main()
>> Foo.One(10) == Foo.One(-1)
= no
- >> Foo.One(10) < Foo.Two(1, 2)
- = yes
+ assert Foo.One(10) < Foo.Two(1, 2)
>> x := Foo.One(123)
>> t := |x|