From c6fbc1585ced33d20012831fcd739ec3c43644f7 Mon Sep 17 00:00:00 2001 From: James Cook Date: Sun, 17 Sep 2023 17:18:12 +0100 Subject: [PATCH] chore: remove comment --- src/core/parentClient_test.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/core/parentClient_test.ts b/src/core/parentClient_test.ts index 6263cef..d947082 100644 --- a/src/core/parentClient_test.ts +++ b/src/core/parentClient_test.ts @@ -12,7 +12,6 @@ Deno.test("Throws when no email is provided", async () => { ); }); -// throws when no password is provided Deno.test("Throws when no password is provided", async () => { const client = new ParentClient("email", ""); await assertRejects( @@ -24,7 +23,7 @@ Deno.test("Throws when no password is provided", async () => { ); }); -Deno.test("Throws with invalid login", async () => { +Deno.test("Throws with invalid username and password", async () => { const client = new ParentClient("invalid", "invalid"); await assertRejects( async () => {