diff options
author | Andreas Rumpf <rumpf_a@web.de> | 2018-04-30 02:52:58 +0200 |
---|---|---|
committer | Andreas Rumpf <rumpf_a@web.de> | 2018-04-30 02:52:58 +0200 |
commit | 0fad659bf72a48d076978655dd23fe369c2d232e (patch) | |
tree | f4d1f5d568f5352dd2ee19a26374e3e6a6b68504 /tests/async | |
parent | f0eb3505fafe34bb11e0f335c322a50ae1f10e36 (diff) | |
download | Nim-0fad659bf72a48d076978655dd23fe369c2d232e.tar.gz |
make more tests green
Diffstat (limited to 'tests/async')
-rw-r--r-- | tests/async/tlambda.nim | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/async/tlambda.nim b/tests/async/tlambda.nim index d187c0d50..8f570689b 100644 --- a/tests/async/tlambda.nim +++ b/tests/async/tlambda.nim @@ -1,7 +1,7 @@ # bug 2007 -import asyncdispatch, asyncnet, logging, json, uri, strutils, future +import asyncdispatch, asyncnet, logging, json, uri, strutils, sugar type Builder = ref object @@ -27,7 +27,7 @@ proc newBuild*(onProgress: ProgressCB): Build = result.onProgress = onProgress proc start(build: Build, repo, hash: string) {.async.} = - let path = repo.parseUri().path.toLower() + let path = repo.parseUri().path.toLowerAscii() proc onProgress(builder: Builder, message: string) {.async.} = debug($message) |