@@ -293,11 +293,11 @@ describe('AuthUtil', async function () {
293293 if ( ! ( auth as any ) . session ) {
294294 auth . session = new auth2 . SsoLogin ( auth . profileName , auth . lspAuth , auth . eventEmitter )
295295 }
296- const updateProfileStub = sinon . stub ( ( auth as any ) . session , 'updateProfile' ) . resolves ( )
296+ const updateProfileStub_3 = sinon . stub ( ( auth as any ) . session , 'updateProfile' ) . resolves ( )
297297
298298 await auth . migrateSsoConnectionToLsp ( 'test-client' )
299299
300- assert . ok ( updateProfileStub . calledOnce )
300+ assert . ok ( updateProfileStub_3 . calledOnce )
301301 assert . ok ( memento . update . calledWith ( 'auth.profiles' , undefined ) )
302302 } )
303303
@@ -364,13 +364,13 @@ describe('AuthUtil', async function () {
364364 auth . session = new auth2 . SsoLogin ( auth . profileName , auth . lspAuth , auth . eventEmitter )
365365 }
366366
367- const updateProfileStub = sinon . stub ( ( auth as any ) . session , 'updateProfile' ) . resolves ( )
367+ const updateProfileStub_2 = sinon . stub ( ( auth as any ) . session , 'updateProfile' ) . resolves ( )
368368
369369 await auth . migrateSsoConnectionToLsp ( 'test-client' )
370370
371- assert . ok ( updateProfileStub . calledOnce )
371+ assert . ok ( updateProfileStub_2 . calledOnce )
372372 assert . ok ( memento . update . calledWith ( 'auth.profiles' , undefined ) )
373- assert . deepStrictEqual ( updateProfileStub . firstCall . args [ 0 ] , {
373+ assert . deepStrictEqual ( updateProfileStub_2 . firstCall . args [ 0 ] , {
374374 startUrl : validProfile . startUrl ,
375375 region : validProfile . ssoRegion ,
376376 scopes : validProfile . scopes ,
0 commit comments