diff options
Diffstat (limited to 'tests/accept/compile/twalker.nim')
-rwxr-xr-x | tests/accept/compile/twalker.nim | 2 |
1 files changed, 1 insertions, 1 deletions
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") |