Skip to content

Commit

Permalink
fixes importParticipant test
Browse files Browse the repository at this point in the history
  • Loading branch information
hughy committed Sep 18, 2024
1 parent 05a320c commit 25f3f56
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -22,13 +22,13 @@ describe('Route wallet/multisig/importParticipant', () => {
await expect(
routeTest.client.wallet.multisig.importParticipant({
identity: identity.serialize().toString('hex'),
name,
name: 'new-name',
secret: secret.serialize().toString('hex'),
}),
).rejects.toThrow(
expect.objectContaining({
message: expect.stringContaining(
`Multisig participant already exists for identity ${identity
`Multisig participant already exists for the identity ${identity
.serialize()
.toString('hex')}`,
),
Expand Down

0 comments on commit 25f3f56

Please sign in to comment.