summary refs log tree commit diff stats
path: root/tests/newconfig
diff options
context:
space:
mode:
authorTimothee Cour <timothee.cour2@gmail.com>2020-07-03 14:04:23 -0700
committerGitHub <noreply@github.com>2020-07-03 23:04:23 +0200
commit695154970d839add2fbbe9754e9e638511120729 (patch)
tree48b43613261cb982b7e408c96a7cf6688526dd68 /tests/newconfig
parent4f6acf24ffde4c43ea9f8c954265d23312453b31 (diff)
downloadNim-695154970d839add2fbbe9754e9e638511120729.tar.gz
deprecate existsDir; use dirExists instead (#14884)
Diffstat (limited to 'tests/newconfig')
-rw-r--r--tests/newconfig/tfoo.nims2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/newconfig/tfoo.nims b/tests/newconfig/tfoo.nims
index fbff38f01..a53e777d4 100644
--- a/tests/newconfig/tfoo.nims
+++ b/tests/newconfig/tfoo.nims
@@ -73,7 +73,7 @@ assert fileExists("tests/newconfig/tfoo.nims") == true
 assert dirExists("tests") == true
 
 assert fileExists("tests/newconfig/tfoo.nims") == true
-assert existsDir("tests") == true
+assert dirExists("tests") == true
 
 discard selfExe()