summary refs log tree commit diff stats
path: root/tests/accept/compile
diff options
context:
space:
mode:
Diffstat (limited to 'tests/accept/compile')
-rwxr-xr-xtests/accept/compile/tos.nim4
-rwxr-xr-xtests/accept/compile/tseqcon2.nim2
-rwxr-xr-xtests/accept/compile/twalker.nim2
3 files changed, 4 insertions, 4 deletions
diff --git a/tests/accept/compile/tos.nim b/tests/accept/compile/tos.nim
index 9ab4295f8..fa9993cc9 100755
--- a/tests/accept/compile/tos.nim
+++ b/tests/accept/compile/tos.nim
@@ -6,7 +6,7 @@ proc walkDirTree(root: string) =
   for k, f in walkDir(root):
     case k 
     of pcFile, pcLinkToFile: echo(f)
-    of pcDirectory: walkDirTree(f)
-    of pcLinkToDirectory: nil
+    of pcDir: walkDirTree(f)
+    of pcLinkToDir: nil
 
 walkDirTree(".")
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)
diff --git a/tests/accept/compile/twalker.nim b/tests/accept/compile/twalker.nim
index ba89ee7c6..3fdd8769b 100755
--- a/tests/accept/compile/twalker.nim
+++ b/tests/accept/compile/twalker.nim
@@ -7,7 +7,7 @@ proc main(filter: string) =
   for filename in walkFiles(filter):

     writeln(stdout, filename)

 

-  for key, val in iterOverEnvironment():

+  for key, val in envPairs():

     writeln(stdout, key & '=' & val)

 

 main("*.nim")