Skip to content

Commit

Permalink
fix typo test name (#2542)
Browse files Browse the repository at this point in the history
* fix(typo): methd -> method

* fix(typo): methd -> method
  • Loading branch information
hiro0218 committed Jul 31, 2023
1 parent 8b8ab3e commit 6aab901
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion deno/lib/__tests__/primitive.test.ts
Expand Up @@ -448,7 +448,7 @@ test("get literal value", () => {
expect(literalStringSchema.value).toEqual("asdf");
});

test("optional convenience methd", () => {
test("optional convenience method", () => {
z.ostring().parse(undefined);
z.onumber().parse(undefined);
z.oboolean().parse(undefined);
Expand Down
2 changes: 1 addition & 1 deletion src/__tests__/primitive.test.ts
Expand Up @@ -447,7 +447,7 @@ test("get literal value", () => {
expect(literalStringSchema.value).toEqual("asdf");
});

test("optional convenience methd", () => {
test("optional convenience method", () => {
z.ostring().parse(undefined);
z.onumber().parse(undefined);
z.oboolean().parse(undefined);
Expand Down

0 comments on commit 6aab901

Please sign in to comment.