Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
jpuri committed Jul 18, 2024
1 parent bd6b77e commit b1b150b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/utils/normalize.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -66,14 +66,14 @@ describe('normalizeTypedMessage', () => {
}

it('should normalize verifyingContract address in domain', () => {
const msg_mock = {
const msgMock = {
...MESSAGE_DATA_MOCK,
domain: {
...MESSAGE_DATA_MOCK.domain,
verifyingContract: '0Xae7ab96520de3a18e5e111b5eaab095312d7fe84',
},
};
const normalizedData = parseNormalizerResult(msg_mock);
const normalizedData = parseNormalizerResult(msgMock);
expect(normalizedData.domain.verifyingContract).toBe(
'0xae7ab96520de3a18e5e111b5eaab095312d7fe84',
);
Expand Down

0 comments on commit b1b150b

Please sign in to comment.