Skip to content

Commit

Permalink
Fix test failing because it wasn't included previously.
Browse files Browse the repository at this point in the history
  • Loading branch information
AlejandroCabeza committed Mar 14, 2024
1 parent 140bbe7 commit 3ded04b
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions tests/waku_node/test_wakunode_relay_rln.nim
Original file line number Diff line number Diff line change
Expand Up @@ -247,22 +247,22 @@ suite "Waku RlnRelay - End to End":

doAssert(
client.wakuRlnRelay.appendRLNProof(
message1b, epoch + client.wakuRlnRelay.rlnEpochSizeSec * 0
message1b, epoch + float(client.wakuRlnRelay.rlnEpochSizeSec * 0)
).isOk()
)
doAssert(
client.wakuRlnRelay.appendRLNProof(
message1kib, epoch + client.wakuRlnRelay.rlnEpochSizeSec * 1
message1kib, epoch + float(client.wakuRlnRelay.rlnEpochSizeSec * 1)
).isOk()
)
doAssert(
client.wakuRlnRelay.appendRLNProof(
message150kib, epoch + client.wakuRlnRelay.rlnEpochSizeSec * 2
message150kib, epoch + float(client.wakuRlnRelay.rlnEpochSizeSec * 2)
).isOk()
)
doAssert(
client.wakuRlnRelay.appendRLNProof(
message151kibPlus, epoch + client.wakuRlnRelay.rlnEpochSizeSec * 3
message151kibPlus, epoch + float(client.wakuRlnRelay.rlnEpochSizeSec * 3)
).isOk()
)

Expand Down Expand Up @@ -327,7 +327,7 @@ suite "Waku RlnRelay - End to End":

doAssert(
client.wakuRlnRelay.appendRLNProof(
message151kibPlus, epoch + client.wakuRlnRelay.rlnEpochSizeSec * 3
message151kibPlus, epoch + float(client.wakuRlnRelay.rlnEpochSizeSec * 3)
).isOk()
)

Expand Down

0 comments on commit 3ded04b

Please sign in to comment.