Skip to content

Commit

Permalink
fix: test
Browse files Browse the repository at this point in the history
  • Loading branch information
cgilbe27 committed Oct 23, 2024
1 parent cbb36d7 commit e0b49c9
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
6 changes: 6 additions & 0 deletions src/sdk/msg/eth.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,12 @@ describe("setupEthMsgExtension", () => {
UpdateParams: jest.fn().mockResolvedValue({
test: "Test",
}),
CreateFunToken: jest.fn().mockResolvedValue({
test: "Test",
}),
ConvertCoinToEVM: jest.fn().mockResolvedValue({
test: "Test",
}),
} as unknown as query.MsgClientImpl)

test("should setup extension correctly", () => {
Expand Down
2 changes: 1 addition & 1 deletion src/sdk/query/eth.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -383,7 +383,7 @@ describe("setupEpochsExtension", () => {
blockNumber: new Long(0),
chainId: new Long(0),
})
expect(result).toEqual({ traceBlock: "Test" })
expect(result).toEqual({ traceCall: "Test" })
})
})

Expand Down

0 comments on commit e0b49c9

Please sign in to comment.