diff options
-rw-r--r-- | tests/collections/ttables.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/collections/ttables.nim b/tests/collections/ttables.nim index de4aaed5e..8534e6767 100644 --- a/tests/collections/ttables.nim +++ b/tests/collections/ttables.nim @@ -47,7 +47,7 @@ block tableTest1: for y in 0..1: assert t[(x,y)] == $x & $y assert($t == - "{(x: 0, y: 0): 00, (x: 0, y: 1): 01, (x: 1, y: 0): 10, (x: 1, y: 1): 11}") + "{(x: 0, y: 1): 01, (x: 0, y: 0): 00, (x: 1, y: 0): 10, (x: 1, y: 1): 11}") block tableTest2: var t = initTable[string, float]() |