From 9b6808273bbf2a70048d7f5c548c18fbe19f09d8 Mon Sep 17 00:00:00 2001 From: Michael C Date: Wed, 22 Sep 2021 17:57:12 -0400 Subject: [PATCH] json as any --- test/cases/lockCategoriesRecords.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/cases/lockCategoriesRecords.ts b/test/cases/lockCategoriesRecords.ts index 8f844fa..b7f13f5 100644 --- a/test/cases/lockCategoriesRecords.ts +++ b/test/cases/lockCategoriesRecords.ts @@ -255,7 +255,7 @@ describe("lockCategoriesRecords", () => { }); it("Should return 400 for no userID", (done) => { - const json = { + const json: any = { videoID: "test", userID: null, categories: ["sponsor"], @@ -270,7 +270,7 @@ describe("lockCategoriesRecords", () => { }); it("Should return 400 for no videoID", (done) => { - const json = { + const json: any = { videoID: null, userID: "test", categories: ["sponsor"],