Skip to content

Commit

Permalink
fix failing test
Browse files Browse the repository at this point in the history
  • Loading branch information
mouseless0x committed Oct 24, 2024
1 parent 34ddc58 commit fe4e2e4
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions packages/permissionless/utils/erc20BalanceOverride.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ import {
describe("erc20BalanceOverride", () => {
test("should return the correct structure for valid inputs", () => {
const params = {
token: "0xTokenAddress",
owner: "0xOwnerAddress",
token: "0xFFfFfFffFFfffFFfFFfFFFFFffFFFffffFfFFFfF",
owner: "0xEeeeeEeeeEeEeeEeEeEeeEEEeeeeEeeeeeeeEEeE",
slot: BigInt(1),
balance: BigInt(1000)
} as const
Expand All @@ -31,8 +31,8 @@ describe("erc20BalanceOverride", () => {

test("should use the default balance when none is provided", () => {
const params: Erc20BalanceOverrideParameters = {
token: "0xTokenAddress",
owner: "0xOwnerAddress",
token: "0xFFfFfFffFFfffFFfFFfFFFFFffFFFffffFfFFFfF",
owner: "0xEeeeeEeeeEeEeeEeEeEeeEEEeeeeEeeeeeeeEEeE",
slot: BigInt(1)
}

Expand Down

0 comments on commit fe4e2e4

Please sign in to comment.