diff options
Diffstat (limited to 'tests/async/tasyncssl.nim')
-rw-r--r-- | tests/async/tasyncssl.nim | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/async/tasyncssl.nim b/tests/async/tasyncssl.nim index a582818eb..57de3271d 100644 --- a/tests/async/tasyncssl.nim +++ b/tests/async/tasyncssl.nim @@ -1,5 +1,6 @@ discard """ cmd: "nim $target --hints:on --define:ssl $options $file" + disabled: osx """ import asyncdispatch, asyncnet, net, strutils @@ -36,7 +37,7 @@ when defined(ssl): inc(clientCount) break else: - if line.startswith("Message "): + if line.startsWith("Message "): inc(msgCount) else: doAssert false |