summary refs log tree commit diff stats
path: root/tests/collections/tableadds.nim
diff options
context:
space:
mode:
Diffstat (limited to 'tests/collections/tableadds.nim')
-rw-r--r--tests/collections/tableadds.nim13
1 files changed, 0 insertions, 13 deletions
diff --git a/tests/collections/tableadds.nim b/tests/collections/tableadds.nim
deleted file mode 100644
index 71f1fad7d..000000000
--- a/tests/collections/tableadds.nim
+++ /dev/null
@@ -1,13 +0,0 @@
-discard """
-  output: '''done'''
-"""
-
-import tables
-
-proc main =
-  var tab = newTable[string, string]()
-  for i in 0..1000:
-    tab.add "key", "value " & $i
-
-main()
-echo "done"