From 5118461956d2a396e3a8d8cdb86a3d3c271611c2 Mon Sep 17 00:00:00 2001 From: Nick Grosenbacher Date: Tue, 22 Oct 2024 11:20:28 -0400 Subject: [PATCH] Fix test --- .../src/components/Authentication/Login.test.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/synapse-react-client/src/components/Authentication/Login.test.tsx b/packages/synapse-react-client/src/components/Authentication/Login.test.tsx index df32684e91a..13448ac6cf5 100644 --- a/packages/synapse-react-client/src/components/Authentication/Login.test.tsx +++ b/packages/synapse-react-client/src/components/Authentication/Login.test.tsx @@ -255,7 +255,7 @@ describe('StandaloneLoginForm', () => { ) expect(callback).not.toHaveBeenCalled() expect(window.location.assign).toHaveBeenCalledWith( - 'https://accounts.synapse.org/changePassword?errorCode=PASSWORD_RESET_VIA_EMAIL_REQUIRED', + 'http://localhost:3000/changePassword?errorCode=PASSWORD_RESET_VIA_EMAIL_REQUIRED', ) }) })