aboutsummaryrefslogtreecommitdiff
path: root/test/enums.tm
diff options
context:
space:
mode:
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|