Skip to content

Commit

Permalink
test(ethers): bump test version
Browse files Browse the repository at this point in the history
  • Loading branch information
Rubilmax committed Jun 21, 2024
1 parent 38ce516 commit c2708cc
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/multicall-provider.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@ describe("ethers-multicall-provider", () => {
it("should throw a descriptive Error when querying unknown contract", async () => {
await expect(unknownUni.symbol()).rejects.toEqual(
new Error(
`could not decode result data (value="0x", info={ "method": "symbol", "signature": "symbol()" }, code=BAD_DATA, version=6.12.1)`
`could not decode result data (value="0x", info={ "method": "symbol", "signature": "symbol()" }, code=BAD_DATA, version=6.13.1)`
)
);
});
Expand All @@ -205,7 +205,7 @@ describe("ethers-multicall-provider", () => {
expect(unknownUni.symbol().catch(() => "UNI")).resolves.toEqual("UNI");
await expect(unknownUni.symbol()).rejects.toEqual(
new Error(
`could not decode result data (value="0x", info={ "method": "symbol", "signature": "symbol()" }, code=BAD_DATA, version=6.12.1)`
`could not decode result data (value="0x", info={ "method": "symbol", "signature": "symbol()" }, code=BAD_DATA, version=6.13.1)`
)
);
});
Expand All @@ -217,7 +217,7 @@ describe("ethers-multicall-provider", () => {
expect(uni.symbol(overrides).catch(() => "UNI")).resolves.toEqual("UNI");
await expect(unknownUni.symbol(overrides)).rejects.toEqual(
new Error(
`could not decode result data (value="0x", info={ "method": "symbol", "signature": "symbol()" }, code=BAD_DATA, version=6.12.1)`
`could not decode result data (value="0x", info={ "method": "symbol", "signature": "symbol()" }, code=BAD_DATA, version=6.13.1)`
)
);
});
Expand Down

0 comments on commit c2708cc

Please sign in to comment.