From 3f82ca7921ca94aa58fb5c249fadcd5074ac0f25 Mon Sep 17 00:00:00 2001 From: Chad Bentz <1760475+felickz@users.noreply.github.com> Date: Mon, 12 May 2025 17:39:18 -0400 Subject: [PATCH] Update componentDetection.test.ts Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --- componentDetection.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/componentDetection.test.ts b/componentDetection.test.ts index 2c057be..b283063 100644 --- a/componentDetection.test.ts +++ b/componentDetection.test.ts @@ -20,7 +20,7 @@ test("Parses CLI output", async () => { }); describe("ComponentDetection.makePackageUrl", () => { - test("returns a empty valid package url from null object", () => { + test("returns an empty string when packageUrlJson is null", () => { const packageUrl = ComponentDetection.makePackageUrl(null); expect(packageUrl).toBe(""); });