From 99774d4b87b0c1fafae48c6ce497ebaf1cf65351 Mon Sep 17 00:00:00 2001 From: rr-bw <102181210+rr-bw@users.noreply.github.com> Date: Wed, 28 May 2025 02:59:06 -0700 Subject: [PATCH] [PM-18721] fix failing tests --- .../change-password/default-change-password.service.spec.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libs/auth/src/angular/change-password/default-change-password.service.spec.ts b/libs/auth/src/angular/change-password/default-change-password.service.spec.ts index ab993859d70..add2e62adbc 100644 --- a/libs/auth/src/angular/change-password/default-change-password.service.spec.ts +++ b/libs/auth/src/angular/change-password/default-change-password.service.spec.ts @@ -116,7 +116,7 @@ describe("DefaultChangePasswordService", () => { // Assert await expect(testFn).rejects.toThrow( - "currentMasterKey or currentServerMasterKeyHash not found", + "invalid PasswordInputResult credentials, could not change password", ); }); @@ -130,7 +130,7 @@ describe("DefaultChangePasswordService", () => { // Assert await expect(testFn).rejects.toThrow( - "currentMasterKey or currentServerMasterKeyHash not found", + "invalid PasswordInputResult credentials, could not change password", ); });