Skip to content

Commit 65501bb

Browse files
committed
wip
1 parent bdb2e88 commit 65501bb

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

tests/all.nim

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,6 @@ import
2121
testhttp,
2222
testhttps,
2323
testproxy,
24+
testrpcchannels,
2425
testrpcmacro,
25-
testserverclient,
26-
testrpcchannels
26+
testserverclient

tests/testrpcchannels.nim

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,6 @@ suite "Thread channel RPC":
2929
var client = newRpcChannelClient(ptrs)
3030

3131
createThread(server, serverThread, ptrs)
32-
waitFor client.connect()
33-
let r = waitFor client.call("myProc", %[%"abc", %[1, 2, 3, 4]])
32+
await client.connect()
33+
let r = await client.call("myProc", %[%"abc", %[1, 2, 3, 4]])
3434
check r.string == "\"Hello abc data: [1, 2, 3, 4]\""

0 commit comments

Comments
 (0)