summary refs log tree commit diff stats
path: root/tests/manyloc/nake
diff options
context:
space:
mode:
authorAndreas Rumpf <rumpf_a@web.de>2018-04-30 02:56:19 +0200
committerAndreas Rumpf <rumpf_a@web.de>2018-04-30 02:56:19 +0200
commit87f548c5f4027a0faf57acf0878f7c5db382222c (patch)
treee8258cdedb86bc75cf85f3419f117252f2ba50b5 /tests/manyloc/nake
parent0fad659bf72a48d076978655dd23fe369c2d232e (diff)
downloadNim-87f548c5f4027a0faf57acf0878f7c5db382222c.tar.gz
make more tests green
Diffstat (limited to 'tests/manyloc/nake')
-rw-r--r--tests/manyloc/nake/nakefile.nim4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/manyloc/nake/nakefile.nim b/tests/manyloc/nake/nakefile.nim
index 97af79a84..3e8609169 100644
--- a/tests/manyloc/nake/nakefile.nim
+++ b/tests/manyloc/nake/nakefile.nim
@@ -88,7 +88,7 @@ task "download", "download game assets":
   if existsFile(path):
     echo "The file already exists\n",
       "[R]emove  [M]ove  [Q]uit  [S]kip    Source: ", GameAssets
-    case stdin.readLine.toLower
+    case stdin.readLine.toLowerAscii
     of "r":
       removeFile path
     of "m":
@@ -120,7 +120,7 @@ task "download", "download game assets":
 
   echo "Download binary libs? Only libs for linux are available currently, enjoy the irony.\n",
     "[Y]es [N]o   Source: ", BinLibs
-  case stdin.readline.toLower
+  case stdin.readline.toLowerAscii
   of "y", "yes":
     discard ## o_O
   else: