summary refs log tree commit diff stats
path: root/tests/stdlib/tos.nim
diff options
context:
space:
mode:
Diffstat (limited to 'tests/stdlib/tos.nim')
-rw-r--r--tests/stdlib/tos.nim4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/stdlib/tos.nim b/tests/stdlib/tos.nim
index ebe577b00..cae388792 100644
--- a/tests/stdlib/tos.nim
+++ b/tests/stdlib/tos.nim
@@ -2,9 +2,9 @@
 
 import os
 
-proc walkDirTree(root: string) = 
+proc walkDirTree(root: string) =
   for k, f in walkDir(root):
-    case k 
+    case k
     of pcFile, pcLinkToFile: echo(f)
     of pcDir: walkDirTree(f)
     of pcLinkToDir: discard