From 4790b54fd2ad2b712ba8c1049327794cce20c69d Mon Sep 17 00:00:00 2001 From: Eric <5089238+emizzle@users.noreply.github.com> Date: Tue, 21 Jan 2025 12:19:53 +1100 Subject: [PATCH] remove unneeded sleep --- tests/integration/testmanager.nim | 1 - 1 file changed, 1 deletion(-) diff --git a/tests/integration/testmanager.nim b/tests/integration/testmanager.nim index c409a493..35dc36a1 100644 --- a/tests/integration/testmanager.nim +++ b/tests/integration/testmanager.nim @@ -138,7 +138,6 @@ template withLock*(lock: AsyncLock, body: untyped) = await lock.acquire() try: body - await sleepAsync(1.millis) finally: try: lock.release()