Skip to content

Commit c73d80a

Browse files
authored
fix: correct ProofValidated event scope parameter in test assertions
1 parent 1dc597a commit c73d80a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

packages/contracts/test/Semaphore.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -514,7 +514,7 @@ describe("Semaphore", () => {
514514
proof.merkleTreeRoot,
515515
proof.nullifier,
516516
proof.message,
517-
proof.merkleTreeRoot,
517+
proof.scope,
518518
proof.points
519519
)
520520
})
@@ -540,7 +540,7 @@ describe("Semaphore", () => {
540540
proof.merkleTreeRoot,
541541
proof.nullifier,
542542
proof.message,
543-
proof.merkleTreeRoot,
543+
proof.scope,
544544
proof.points
545545
)
546546
})
@@ -558,7 +558,7 @@ describe("Semaphore", () => {
558558
proof.merkleTreeRoot,
559559
proof.nullifier,
560560
proof.message,
561-
proof.merkleTreeRoot,
561+
proof.scope,
562562
proof.points
563563
)
564564
})

0 commit comments

Comments
 (0)