diff --git a/src/constants/__tests__/urls.spec.ts b/src/constants/__tests__/urls.spec.ts index 4ea4197..4a571ba 100644 --- a/src/constants/__tests__/urls.spec.ts +++ b/src/constants/__tests__/urls.spec.ts @@ -114,7 +114,7 @@ describe('URLs', () => { const oauthUrl = getOauthUrl(); - expect(oauthUrl).toBe('https://qa.deriv.com/oauth2/authorize?app_id=67890&l=EN&&brand=deriv'); + expect(oauthUrl).toBe('https://qa.deriv.com/oauth2/authorize?app_id=67890&l=EN&brand=deriv'); }); it('should return the default OAuth URL if appId and serverUrl are not set', () => { @@ -136,7 +136,7 @@ describe('URLs', () => { const oauthUrl = getOauthUrl(); - expect(oauthUrl).toBe('https://qa.deriv.com/oauth2/authorize?app_id=67890&l=EN&&brand=deriv'); + expect(oauthUrl).toBe('https://qa.deriv.com/oauth2/authorize?app_id=67890&l=EN&brand=deriv'); }); });