diff options
Diffstat (limited to 'tests/system/io.nim')
-rw-r--r-- | tests/system/io.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/system/io.nim b/tests/system/io.nim index 4837f7093..2c68fd249 100644 --- a/tests/system/io.nim +++ b/tests/system/io.nim @@ -9,7 +9,7 @@ const TEST_FILE = "tests/testdata/string" proc echoLoop(str: string): string = result = "" - var process = startProcess(os.addFileExt("tests/system/helpers/readall_echo", ExeExt)) + var process = startProcess(findExe("tests/system/helpers/readall_echo")) var input = process.inputStream input.write(str) input.close() |