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 () => {