From b07d1f1dc38bdf073f0036095ff120f1d72d53de Mon Sep 17 00:00:00 2001 From: Araq Date: Wed, 8 Aug 2018 16:18:30 +0200 Subject: [PATCH] make async tests green for Linux --- lib/pure/asyncnet.nim | 2 -- 1 file changed, 2 deletions(-) diff --git a/lib/pure/asyncnet.nim b/lib/pure/asyncnet.nim index e7552e3e3b..da7c3473ca 100644 --- a/lib/pure/asyncnet.nim +++ b/lib/pure/asyncnet.nim @@ -493,8 +493,6 @@ proc recvLineInto*(socket: AsyncSocket, resString: FutureVar[string], ## **Warning**: ``recvLineInto`` on unbuffered sockets assumes that the ## protocol uses ``\r\L`` to delimit a new line. assert SocketFlag.Peek notin flags ## TODO: - assert(not resString.mget.isNil(), - "String inside resString future needs to be initialised") result = newFuture[void]("asyncnet.recvLineInto") # TODO: Make the async transformation check for FutureVar params and complete