From ecd782f94ddb85f089780a15b8bf58fcb28c0b9d Mon Sep 17 00:00:00 2001 From: jaasen-livefront Date: Fri, 15 Nov 2024 09:33:46 -0800 Subject: [PATCH] remove comment --- .../risk-insights/services/password-health.service.spec.ts | 2 -- 1 file changed, 2 deletions(-) diff --git a/bitwarden_license/bit-common/src/tools/reports/risk-insights/services/password-health.service.spec.ts b/bitwarden_license/bit-common/src/tools/reports/risk-insights/services/password-health.service.spec.ts index b3b36072fd9..6d3f8bdab04 100644 --- a/bitwarden_license/bit-common/src/tools/reports/risk-insights/services/password-health.service.spec.ts +++ b/bitwarden_license/bit-common/src/tools/reports/risk-insights/services/password-health.service.spec.ts @@ -53,7 +53,6 @@ describe("PasswordHealthService", () => { }); it("should build the application health report correctly", async () => { - // Execute the method const result = await service.generateReportDetails("orgId"); const expected = [ @@ -87,7 +86,6 @@ describe("PasswordHealthService", () => { }, ]; - // Sort for comparison const sortFn = (a: any, b: any) => a.application.localeCompare(b.application); expect(result.details.sort(sortFn)).toEqual(expected.sort(sortFn));