diff --git a/libs/common/src/vault/tasks/services/default-task.service.spec.ts b/libs/common/src/vault/tasks/services/default-task.service.spec.ts index 9d8559cd859..df755dd9f90 100644 --- a/libs/common/src/vault/tasks/services/default-task.service.spec.ts +++ b/libs/common/src/vault/tasks/services/default-task.service.spec.ts @@ -304,7 +304,7 @@ describe("Default task service", () => { }); describe("listenForTaskNotifications()", () => { - it("should not subscribe to server notifications when there are no unlocked users", () => { + it("should not subscribe to notifications when there are no unlocked users", () => { mockAuthStatuses$.next({ [userId]: AuthenticationStatus.Locked, }); @@ -320,7 +320,7 @@ describe("Default task service", () => { subscription.unsubscribe(); }); - it("should not subscribe to server notifications when no users have tasks enabled", () => { + it("should not subscribe to notifications when no users have tasks enabled", () => { mockAuthStatuses$.next({ [userId]: AuthenticationStatus.Unlocked, }); @@ -336,7 +336,7 @@ describe("Default task service", () => { subscription.unsubscribe(); }); - it("should subscribe to server notifications when there are unlocked users with tasks enabled", () => { + it("should subscribe to notifications when there are unlocked users with tasks enabled", () => { mockAuthStatuses$.next({ [userId]: AuthenticationStatus.Unlocked, }); @@ -378,7 +378,7 @@ describe("Default task service", () => { subscription.unsubscribe(); }); - it("should ignore server notifications for other users", async () => { + it("should ignore notifications for other users", async () => { mockAuthStatuses$.next({ [userId]: AuthenticationStatus.Unlocked, }); @@ -403,7 +403,7 @@ describe("Default task service", () => { subscription.unsubscribe(); }); - it("should ignore other server notifications types", async () => { + it("should ignore other notifications types", async () => { mockAuthStatuses$.next({ [userId]: AuthenticationStatus.Unlocked, });