aboutsummaryrefslogtreecommitdiff
path: root/test/tables.tm
diff options
context:
space:
mode:
Diffstat (limited to 'test/tables.tm')
-rw-r--r--test/tables.tm6
1 files changed, 2 insertions, 4 deletions
diff --git a/test/tables.tm b/test/tables.tm
index 9419d875..2254a7a0 100644
--- a/test/tables.tm
+++ b/test/tables.tm
@@ -89,10 +89,8 @@ func main()
= &{"one"=999, "two"=222}
do
- >> {1=1, 2=2} == {2=2, 1=1}
- = yes
- >> {1=1, 2=2} == {1=1, 2=999}
- = no
+ assert {1=1, 2=2} == {2=2, 1=1}
+ assert {1=1, 2=2} != {1=1, 2=999}
>> {1=1, 2=2} <> {2=2, 1=1}
= Int32(0)