Skip to content

Commit 89343ee

Browse files
committed
Fix checkSchema test names
1 parent ba5fbf1 commit 89343ee

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/json/index.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ const checkSchemaTestSchema = {
107107
rootKey: json.object(objectSchema),
108108
};
109109

110-
test("validateSchema - checkSchema reports unknown keys", async (t) => {
110+
test("checkSchema - reports unknown keys", async (t) => {
111111
const result = json.checkSchema(checkSchemaTestSchema, {
112112
rootKey: {
113113
objectKey: {
@@ -125,7 +125,7 @@ test("validateSchema - checkSchema reports unknown keys", async (t) => {
125125
);
126126
});
127127

128-
test("validateSchema - checkSchema reports invalid keys", async (t) => {
128+
test("checkSchema - reports invalid keys", async (t) => {
129129
const result = json.checkSchema(checkSchemaTestSchema, {
130130
rootKey: {
131131
objectKey: {

0 commit comments

Comments
 (0)