From ff409175efbffe31306c91e4d5d3652ff21499ee Mon Sep 17 00:00:00 2001 From: Marcin Czenko Date: Mon, 2 Jun 2025 05:15:34 +0200 Subject: [PATCH] removes not needed err from "without" in repostore test --- tests/codex/stores/testrepostore.nim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/codex/stores/testrepostore.nim b/tests/codex/stores/testrepostore.nim index 1666e44a..d1580f41 100644 --- a/tests/codex/stores/testrepostore.nim +++ b/tests/codex/stores/testrepostore.nim @@ -296,7 +296,7 @@ asyncchecksuite "RepoStore": beIter: auto ): Future[seq[BlockExpiration]] {.async: (raises: [CancelledError]).} = var expirations = newSeq[BlockExpiration](0) - without iter =? (await beIter), err: + without iter =? (await beIter): return expirations for beFut in toSeq(iter): if value =? (await beFut):