Skip to content

Commit 6aab901

Browse files
authoredJul 31, 2023
fix typo test name (#2542)
* fix(typo): methd -> method * fix(typo): methd -> method
1 parent 8b8ab3e commit 6aab901

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed
 

‎deno/lib/__tests__/primitive.test.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -448,7 +448,7 @@ test("get literal value", () => {
448448
expect(literalStringSchema.value).toEqual("asdf");
449449
});
450450

451-
test("optional convenience methd", () => {
451+
test("optional convenience method", () => {
452452
z.ostring().parse(undefined);
453453
z.onumber().parse(undefined);
454454
z.oboolean().parse(undefined);

‎src/__tests__/primitive.test.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -447,7 +447,7 @@ test("get literal value", () => {
447447
expect(literalStringSchema.value).toEqual("asdf");
448448
});
449449

450-
test("optional convenience methd", () => {
450+
test("optional convenience method", () => {
451451
z.ostring().parse(undefined);
452452
z.onumber().parse(undefined);
453453
z.oboolean().parse(undefined);

0 commit comments

Comments
 (0)
Please sign in to comment.