Skip to content

Commit

Permalink
Fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Bushstar committed Dec 13, 2024
1 parent 3921e55 commit ea4c395
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/keymaster.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ describe('loadWallet', () => {
throw new ExpectedExceptionError();
} catch (error) {
expect(ok).toBe(true);
expect(error.message).toBe('KC_ENCRYPTED_PASSPHRASE not set');
expect(error.message).toBe('Passphrase not set');
}
});

Expand Down Expand Up @@ -303,7 +303,7 @@ describe('saveWallet', () => {
await keymaster.saveWallet(mockWallet);
throw new ExpectedExceptionError();
} catch (error) {
expect(error.message).toBe('KC_ENCRYPTED_PASSPHRASE not set');
expect(error.message).toBe('Passphrase not set');
}
});

Expand Down

0 comments on commit ea4c395

Please sign in to comment.