Skip to content

Commit

Permalink
fix(rln-relay): flaky static group manager test (#1798)
Browse files Browse the repository at this point in the history
  • Loading branch information
rymnc committed Jun 14, 2023
1 parent 0111b88 commit 0e9ecbd
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion tests/v2/waku_rln_relay/test_rln_group_manager_static.nim
Expand Up @@ -21,6 +21,9 @@ import
eth/keys,
discovery/dnsdisc/builder

import
std/tempfiles

proc generateCredentials(rlnInstance: ptr RLN): IdentityCredential =
let credRes = membershipKeyGen(rlnInstance)
return credRes.get()
Expand All @@ -33,7 +36,7 @@ proc generateCredentials(rlnInstance: ptr RLN, n: int): seq[IdentityCredential]

suite "Static group manager":
setup:
let rlnInstanceRes = createRlnInstance()
let rlnInstanceRes = createRlnInstance(tree_path = genTempPath("rln_tree", "static"))
require:
rlnInstanceRes.isOk()

Expand Down

0 comments on commit 0e9ecbd

Please sign in to comment.