Skip to content

Commit dbf37d2

Browse files
committed
update client_id
1 parent 75aa2c2 commit dbf37d2

File tree

1 file changed

+2
-8
lines changed
  • tests/module-mocking/oauth/OAuthLoginHandlers

1 file changed

+2
-8
lines changed

tests/module-mocking/oauth/OAuthLoginHandlers/index.ts

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,7 @@ import {
1616
import type { BaseHandlerOptions } from '../../../../app/core/OAuthService/OAuthLoginHandlers/baseHandler';
1717

1818
function getMockGoogleOAuthClientId(): string {
19-
return (
20-
process.env.IOS_GOOGLE_CLIENT_ID ||
21-
process.env.ANDROID_GOOGLE_SERVER_CLIENT_ID ||
22-
'615965109465-i8oeh9kuvl1n6lk1ffkobpvth27bmi41.apps.googleusercontent.com'
23-
);
19+
return '387141446914-5ja3p4dfanfkm8uq238fm1b8t1rkscv4.apps.googleusercontent.com';
2420
}
2521

2622
/**
@@ -260,9 +256,7 @@ export function createLoginHandler(
260256
});
261257
case 'apple':
262258
return new MockAppleLoginHandler({
263-
clientId:
264-
process.env.ANDROID_APPLE_CLIENT_ID ||
265-
'io.metamask.appleloginclient.dev',
259+
clientId: 'io.metamask.appleloginclient.uat',
266260
});
267261
default:
268262
throw new Error(`[E2E Mock] Unsupported provider: ${provider}`);

0 commit comments

Comments
 (0)