diff --git a/src/auth/spec/verifySas9Login.spec.ts b/src/auth/spec/verifySas9Login.spec.ts
index 78f84fc..c71f595 100644
--- a/src/auth/spec/verifySas9Login.spec.ts
+++ b/src/auth/spec/verifySas9Login.spec.ts
@@ -17,7 +17,7 @@ describe('verifySas9Login', () => {
it('should return isLoggedIn true by checking state of popup', async () => {
const popup = {
window: {
- location: { href: serverUrl + `/SASLogon/home` },
+ location: { href: serverUrl + `/SASLogon` },
document: { body: { innerText: '
You have signed in.
' } }
}
} as unknown as Window
diff --git a/src/auth/spec/verifySasViyaLogin.spec.ts b/src/auth/spec/verifySasViyaLogin.spec.ts
index f0d1d7d..dc99e32 100644
--- a/src/auth/spec/verifySasViyaLogin.spec.ts
+++ b/src/auth/spec/verifySasViyaLogin.spec.ts
@@ -18,7 +18,7 @@ describe('verifySasViyaLogin', () => {
it('should return isLoggedIn true by checking state of popup', async () => {
const popup = {
window: {
- location: { href: serverUrl + `/SASLogon/home` },
+ location: { href: serverUrl + `/SASLogon` },
document: { body: { innerText: 'You have signed in.
' } }
}
} as unknown as Window