From 46b0dbc5a448249ddc9a6ce20465f0fa41de6d64 Mon Sep 17 00:00:00 2001 From: Bruce Hill Date: Fri, 11 Jul 2025 16:05:30 -0400 Subject: Use `assert` more in tests to give better error messages --- test/tables.tm | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'test/tables.tm') 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) -- cgit v1.2.3