Skip to content

Commit

Permalink
Fix test example: replace senderId to senderDID (#201)
Browse files Browse the repository at this point in the history
  • Loading branch information
Kolezhniuk authored Mar 22, 2024
1 parent 39f0855 commit f888640
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tests/iden3comm/packageManager.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ describe('tests packageManager with ZKP Packer', () => {
);

const e = await pm.pack(MediaType.ZKPMessage, msgBytes, {
senderID: senderDID,
senderDID,
provingMethodAlg: new ProvingMethodAlg('groth16-mock', 'authV2')
});

Expand Down
2 changes: 1 addition & 1 deletion tests/iden3comm/zkp.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ describe('zkp packer tests', () => {
const senderDID = DID.parse(identifier);

const b = await p.pack(msgBytes, {
senderID: senderDID,
senderDID: senderDID,
profileNonce: 0, // if it's genesis identity
provingMethodAlg: new ProvingMethodAlg('groth16-mock', 'authV2')
} as unknown as ZKPPackerParams);
Expand Down

0 comments on commit f888640

Please sign in to comment.