summary refs log tree commit diff stats
path: root/tests/async
diff options
context:
space:
mode:
authorAraq <rumpf_a@web.de>2014-08-29 09:12:12 +0200
committerAraq <rumpf_a@web.de>2014-08-29 09:12:12 +0200
commitc6034277fcb597da03d064b773ad4f6823823fa0 (patch)
treebcd12c6af99162c2bc5f03cd374d7b54c07420f3 /tests/async
parentcd2c6128d1df471830ea7f842b57aa32aee5deab (diff)
downloadNim-c6034277fcb597da03d064b773ad4f6823823fa0.tar.gz
further adaptations
Diffstat (limited to 'tests/async')
-rw-r--r--tests/async/tasyncawait.nim2
-rw-r--r--tests/async/tasynciossl.nim2
2 files changed, 2 insertions, 2 deletions
diff --git a/tests/async/tasyncawait.nim b/tests/async/tasyncawait.nim
index 2d65db4bd..ec05a0386 100644
--- a/tests/async/tasyncawait.nim
+++ b/tests/async/tasyncawait.nim
@@ -25,7 +25,7 @@ proc launchSwarm(port: TPort) {.async.} =
       await sendMessages(sock)
       closeSocket(sock)
     else:
-      # Issue #932: https://github.com/Araq/Nimrod/issues/932
+      # Issue #932: https://github.com/Araq/Nim/issues/932
       var msgFut = sendMessages(sock)
       msgFut.callback =
         proc () =
diff --git a/tests/async/tasynciossl.nim b/tests/async/tasynciossl.nim
index 6b38fcf7b..b0222e4ff 100644
--- a/tests/async/tasynciossl.nim
+++ b/tests/async/tasynciossl.nim
@@ -1,6 +1,6 @@
 discard """
   file: "tasynciossl.nim"
-  cmd: "nimrod $target --hints:on --define:ssl $options $file"
+  cmd: "nim $target --hints:on --define:ssl $options $file"
   output: "20000"
 """
 import sockets, asyncio, strutils, times