Skip to content

Commit 103a52a

Browse files
committed
fix typo
1 parent c541070 commit 103a52a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

packages/thirdweb/src/utils/abi/normalizeFunctionParams.test.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -88,10 +88,10 @@ describe("normalizeFunctionParams", () => {
8888
outputs: [],
8989
};
9090

91-
const normalied = normalizeFunctionParams(abiFunction, { "*": 123 });
91+
const normalized = normalizeFunctionParams(abiFunction, { "*": 123 });
9292

93-
expect(normalied.length).to.eq(1);
94-
expect(normalied[0]).to.eq(123);
93+
expect(normalized.length).to.eq(1);
94+
expect(normalized[0]).to.eq(123);
9595
});
9696

9797
it("should throw an error if a parameter value is missing", () => {

0 commit comments

Comments
 (0)