From c6283e2e0a4d3c77a6467bcb596b67d5a97db415 Mon Sep 17 00:00:00 2001 From: Jaremy Creechley Date: Mon, 18 Sep 2023 14:18:59 -0700 Subject: [PATCH] merge fix --- tests/datastore/testthreadproxyds.nim | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/tests/datastore/testthreadproxyds.nim b/tests/datastore/testthreadproxyds.nim index a9cbfb9..bdc7656 100644 --- a/tests/datastore/testthreadproxyds.nim +++ b/tests/datastore/testthreadproxyds.nim @@ -147,9 +147,7 @@ suite "Test ThreadDatastore cancelations": test "Should monitor signal and cancel": var signal = ThreadSignalPtr.new().tryGet() - ctx = TaskCtx[void].new( - ds= sqlStore, - signal= signal) + ctx = TaskCtx[void].new( ds= sqlStore) fut = newFuture[void]("signalMonitor") threadArgs: (ptr TaskCtx[void], ptr Future[void]) = (addrOf(ctx), addr fut) @@ -178,9 +176,7 @@ suite "Test ThreadDatastore cancelations": test "Should monitor and not cancel": var signal = ThreadSignalPtr.new().tryGet() - ctx = TaskCtx[void].new( - ds= sqlStore, - signal= signal) + ctx = TaskCtx[void].new( ds= sqlStore) fut = newFuture[void]("signalMonitor") threadArgs = (addrOf ctx, addr fut)