remove async raise from test

This commit is contained in:
Tanguy 2022-01-17 16:26:27 +01:00
parent 7eb3225d19
commit 9f1d5d26d8
No known key found for this signature in database
GPG Key ID: 7DD8EC6B6CE6C45E

View File

@ -56,7 +56,7 @@ method readOnce*(s: TestSelectStream,
method write*(s: TestSelectStream, msg: seq[byte]) {.async, gcsafe.} = discard
method close(s: TestSelectStream) {.async, gcsafe, raises: [Defect].} =
method close(s: TestSelectStream) {.async, gcsafe.} =
s.isClosed = true
s.isEof = true