diff options
author | Dominik Picheta <dominikpicheta@googlemail.com> | 2014-03-23 11:39:24 +0000 |
---|---|---|
committer | Dominik Picheta <dominikpicheta@googlemail.com> | 2014-03-23 11:39:24 +0000 |
commit | 10f205bb52374ac06fbed32439e13caeb964d94d (patch) | |
tree | 3b9cb9c17279fbf8093c6d0036ab66ee5fc75207 /tests | |
parent | 3a34a8880c8a1d25942cf6ef9f3f573941fba316 (diff) | |
download | Nim-10f205bb52374ac06fbed32439e13caeb964d94d.tar.gz |
Fixes tasyncawait and the net module on Linux.
Diffstat (limited to 'tests')
-rw-r--r-- | tests/async/tasyncawait.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/async/tasyncawait.nim b/tests/async/tasyncawait.nim index ae22d8d52..7f2c1e6cc 100644 --- a/tests/async/tasyncawait.nim +++ b/tests/async/tasyncawait.nim @@ -3,7 +3,7 @@ discard """ cmd: "nimrod cc --hints:on $# $#" output: "5000" """ -import asyncio2, sockets2, net, strutils, os +import asyncdispatch, rawsockets, net, strutils, os var disp = newDispatcher() var msgCount = 0 |