1
0
mirror of https://github.com/bitwarden/browser synced 2026-02-12 14:34:02 +00:00

remove comment

This commit is contained in:
jaasen-livefront
2024-11-15 09:33:46 -08:00
parent ea2b46db71
commit ecd782f94d

View File

@@ -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));