From a21d7c681d9f61f15beddb97fabba0ed6b72640d Mon Sep 17 00:00:00 2001 From: Charles Blake Date: Thu, 12 Feb 2015 06:57:39 -0500 Subject: [PATCH] New probe seq yields a non-bug swap of 1st 2 keys. --- tests/table/ttables.nim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/table/ttables.nim b/tests/table/ttables.nim index de4aaed5eb..8534e6767d 100644 --- a/tests/table/ttables.nim +++ b/tests/table/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]()