summary refs log tree commit diff stats
path: root/tests/accept/compile/tseqcon2.nim
diff options
context:
space:
mode:
authorAraq <rumpf_a@web.de>2011-07-22 23:58:19 +0200
committerAraq <rumpf_a@web.de>2011-07-22 23:58:19 +0200
commit246b8d18a1102ddcb6435a67d6979fa2a48bf98e (patch)
treee7e164de8fc2c0998ab17447ab4cb7c5307ec802 /tests/accept/compile/tseqcon2.nim
parent569c1ce5ec7cedd2c28d3272aae92062638cad0d (diff)
downloadNim-246b8d18a1102ddcb6435a67d6979fa2a48bf98e.tar.gz
tests repaired; serious typo in the allocator fixed; fixes #32
Diffstat (limited to 'tests/accept/compile/tseqcon2.nim')
-rwxr-xr-xtests/accept/compile/tseqcon2.nim2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/accept/compile/tseqcon2.nim b/tests/accept/compile/tseqcon2.nim
index 6225c3bb1..4f2763ffe 100755
--- a/tests/accept/compile/tseqcon2.nim
+++ b/tests/accept/compile/tseqcon2.nim
@@ -3,7 +3,7 @@ import os
 proc rec_dir(dir: string): seq[string] =
   result = @[]
   for kind, path in walk_dir(dir):
-    if kind == pcDirectory:
+    if kind == pcDir:
       add(result, rec_dir(path))
     else:
       add(result, path)