diff options
author | Yuriy Glukhov <yuriy.glukhov@gmail.com> | 2016-11-27 13:34:24 +0200 |
---|---|---|
committer | Yuriy Glukhov <yuriy.glukhov@gmail.com> | 2016-11-27 13:34:24 +0200 |
commit | 10292a2626ded66a369044392d670030ec699210 (patch) | |
tree | 56e96ea44c3f1953c4df6464d377fc7004eb0f43 | |
parent | 9b4619235fb7e5a52195dc601f99142a46605297 (diff) | |
download | Nim-10292a2626ded66a369044392d670030ec699210.tar.gz |
Corrected test case for #5057.
-rw-r--r-- | lib/pure/collections/tables.nim | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/pure/collections/tables.nim b/lib/pure/collections/tables.nim index e423396ed..e6e72d9ed 100644 --- a/lib/pure/collections/tables.nim +++ b/lib/pure/collections/tables.nim @@ -1159,10 +1159,10 @@ when isMainModule: doAssert(prev < i) prev = i - block: # Deletion from OrederedTable should account for collision groups. See issue #5057. + block: # Deletion from OrderedTable should account for collision groups. See issue #5057. # The bug is reproducible only with exact keys - const key1 = "boy_jackpot.inGamma1" - const key2 = "boy_jackpot.outBlack2" + const key1 = "boy_jackpot.inGamma" + const key2 = "boy_jackpot.outBlack" var t = { key1: 0, |