File tree Expand file tree Collapse file tree 1 file changed +2
-8
lines changed
tests/module-mocking/oauth/OAuthLoginHandlers Expand file tree Collapse file tree 1 file changed +2
-8
lines changed Original file line number Diff line number Diff line change @@ -16,11 +16,7 @@ import {
1616import type { BaseHandlerOptions } from '../../../../app/core/OAuthService/OAuthLoginHandlers/baseHandler' ;
1717
1818function 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 } ` ) ;
You can’t perform that action at this time.
0 commit comments