diff options
author | Timothee Cour <timothee.cour2@gmail.com> | 2020-07-02 07:19:13 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-07-02 16:19:13 +0200 |
commit | dc5a40f3f39c6ea672e6dc6aca7f8118a69dda99 (patch) | |
tree | 5565f50d66e33272624093268d0c8641c770f59e /tests/misc/trunner.nim | |
parent | 366b9a7e4a067cece3b1215de7fb4dffc703e88a (diff) | |
download | Nim-dc5a40f3f39c6ea672e6dc6aca7f8118a69dda99.tar.gz |
{.deprecated: [existsFile: fileExists].} (#14735)
* {.deprecated: [existsFile: fileExists].} * s/existsFile/fileExists/ except under deps * workaround pending #14819 * fix test
Diffstat (limited to 'tests/misc/trunner.nim')
-rw-r--r-- | tests/misc/trunner.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/misc/trunner.nim b/tests/misc/trunner.nim index 382fd35ae..d67547d62 100644 --- a/tests/misc/trunner.nim +++ b/tests/misc/trunner.nim @@ -26,7 +26,7 @@ const proc runCmd(file, options = ""): auto = let fileabs = testsDir / file.unixToNativePath - doAssert fileabs.existsFile, fileabs + doAssert fileabs.fileExists, fileabs let cmd = fmt"{nim} {mode} {options} --hints:off {fileabs}" result = execCmdEx(cmd) when false: echo result[0] & "\n" & result[1] # for debugging |