Skip to content

Commit

Permalink
Fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
paulmillr committed Dec 3, 2020
1 parent 1d0a7b6 commit 1216d05
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/index.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ describe("bls12-381", () => {
await bls.verifyBatch(
messages,
publicKey,
aggregatedSignature
aggregatedSignature as Uint8Array
)
).toBe(true);
}
Expand Down Expand Up @@ -124,7 +124,7 @@ describe("bls12-381", () => {
await bls.verifyBatch(
wrongMessages,
publicKey,
aggregatedSignature
aggregatedSignature as Uint8Array

)
).toBe(messages.every((m, i) => m === wrongMessages[i]));
Expand Down

0 comments on commit 1216d05

Please sign in to comment.