Skip to content

Commit

Permalink
split assert into two in double-spending test
Browse files Browse the repository at this point in the history
  • Loading branch information
s-tikhomirov committed Jan 30, 2025
1 parent 5016555 commit a5411c4
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tests/incentivization/test_poc.nim
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,8 @@ suite "Waku Incentivization PoC Eligibility Proofs":
eligibilityProof, receiverExpected, TxValueExpectedWei
)

assert (isEligibleOnce.isOk() and isEligibleTwice.isErr()), isEligibleTwice.error
assert isEligibleOnce.isOk()
assert isEligibleTwice.isErr(), isEligibleTwice.error

# Stop Anvil daemon
stopAnvil(runAnvil)

0 comments on commit a5411c4

Please sign in to comment.