diff options
author | Andreas Rumpf <rumpf_a@web.de> | 2018-12-09 13:47:03 +0100 |
---|---|---|
committer | Araq <rumpf_a@web.de> | 2018-12-11 21:23:24 +0100 |
commit | ac785b06236dbc228a3b755c11bb3b1330ccc3ab (patch) | |
tree | 8e96059a7b21e3fbc7582983a6330c6656e395f4 /tests/collections | |
parent | 46820b94a634f70f805ab033703c225182564731 (diff) | |
download | Nim-ac785b06236dbc228a3b755c11bb3b1330ccc3ab.tar.gz |
testament: joinable is now an explicit concept of a test spec
Diffstat (limited to 'tests/collections')
-rw-r--r-- | tests/collections/ttables.nim | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/collections/ttables.nim b/tests/collections/ttables.nim index b22b2b237..6798e5731 100644 --- a/tests/collections/ttables.nim +++ b/tests/collections/ttables.nim @@ -6,10 +6,11 @@ And we get here 2 3 ''' +joinable: false """ import hashes, sequtils, tables - +# test should not be joined because it takes too long. block tableadds: proc main = var tab = newTable[string, string]() |