Skip to content
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix: fix test
  • Loading branch information
ccharly committed Dec 5, 2025
commit 273e431104b24be04787427aa0550e18bdbcfe1a
2 changes: 1 addition & 1 deletion packages/keyring-snap-sdk/src/v2/rpc-handler.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -236,7 +236,7 @@ describe('handleKeyringRequestV2', () => {
error.message = 1 as unknown as string;
keyring.getAccounts.mockRejectedValue(error);
await expect(handleKeyringRequestV2(keyring, request)).rejects.toThrow(
'An unknown error occurred while handling the keyring request',
'An unknown error occurred while handling the keyring (v2) request',
);
});
});
Loading