summary refs log tree commit diff stats
path: root/tests/async/t6846.nim
diff options
context:
space:
mode:
Diffstat (limited to 'tests/async/t6846.nim')
-rw-r--r--tests/async/t6846.nim3
1 files changed, 1 insertions, 2 deletions
diff --git a/tests/async/t6846.nim b/tests/async/t6846.nim
index 687a3f865..7fe38f3b3 100644
--- a/tests/async/t6846.nim
+++ b/tests/async/t6846.nim
@@ -6,11 +6,10 @@ discard """
 
 import asyncdispatch
 import asyncfile
-import times
 
 var asyncStdout = 1.AsyncFD.newAsyncFile()
 proc doStuff: Future[void] {.async.} =
   await asyncStdout.write "hello world\n"
 
 let fut = doStuff()
-doAssert fut.finished, "Poll is needed unnecessarily. See #6846."
\ No newline at end of file
+doAssert fut.finished, "Poll is needed unnecessarily. See #6846."