summary refs log tree commit diff stats
path: root/tests/stdlib/tregex.nim
diff options
context:
space:
mode:
Diffstat (limited to 'tests/stdlib/tregex.nim')
-rw-r--r--tests/stdlib/tregex.nim2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/stdlib/tregex.nim b/tests/stdlib/tregex.nim
index 21f4e6743..cf80f8122 100644
--- a/tests/stdlib/tregex.nim
+++ b/tests/stdlib/tregex.nim
@@ -11,7 +11,7 @@ when defined(powerpc64):
 else:
   import
     re
-
+  import std/syncio
   if "keyA = valueA" =~ re"\s*(\w+)\s*\=\s*(\w+)":
     write(stdout, "key: ", matches[0])
   elif "# comment!" =~ re.re"\s*(\#.*)":