Skip to content

Commit

Permalink
test(sdk): fix error string for failed function decoding
Browse files Browse the repository at this point in the history
  • Loading branch information
Quazia committed Sep 27, 2024
1 parent 09a30c5 commit 2ce06fe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/sdk/src/Actions/EventAction.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -338,7 +338,7 @@ describe('EventAction Func Selector', () => {
} catch (e) {
expect(e).toBeInstanceOf(Error);
expect((e as Error).message).toContain(
'AbiFunctionSignatureNotFoundError',
'Failed to decode function data: Encoded function signature "0x6a627842"',
);
}
});
Expand Down

0 comments on commit 2ce06fe

Please sign in to comment.