@@ -268,16 +268,16 @@ describe('OdpManager', () => {
268268 await odpManager . onReady ( ) ;
269269 expect ( odpManager . isReady ( ) ) . toBe ( true ) ;
270270 expect ( odpManager . getStatus ( ) ) . toEqual ( Status . Stopped ) ;
271- verify ( mockEventManager . start ( ) ) . never ( ) ;
271+ verify ( mockEventManager . start ( ) ) . never ( ) ;
272272 } ) ;
273273
274274 it ( 'should pass the integrated odp config given in constructor to eventManger and segmentManager' , async ( ) => {
275275 when ( mockEventManager . updateSettings ( anything ( ) ) ) . thenReturn ( undefined ) ;
276276 when ( mockSegmentManager . updateSettings ( anything ( ) ) ) . thenReturn ( undefined ) ;
277277
278- const odpIntegrationConfig : OdpIntegratedConfig = {
279- integrated : true ,
280- odpConfig : new OdpConfig ( keyA , hostA , pixelA , segmentsA )
278+ const odpIntegrationConfig : OdpIntegratedConfig = {
279+ integrated : true ,
280+ odpConfig : new OdpConfig ( keyA , hostA , pixelA , segmentsA )
281281 } ;
282282
283283 const odpManager = testOdpManager ( {
@@ -362,9 +362,9 @@ describe('OdpManager', () => {
362362 expect ( odpManager . isReady ( ) ) . toBe ( true ) ;
363363 expect ( odpManager . getStatus ( ) ) . toEqual ( Status . Running ) ;
364364
365- const newOdpIntegrationConfig : OdpIntegratedConfig = {
366- integrated : true ,
367- odpConfig : new OdpConfig ( keyB , hostB , pixelB , segmentsB )
365+ const newOdpIntegrationConfig : OdpIntegratedConfig = {
366+ integrated : true ,
367+ odpConfig : new OdpConfig ( keyB , hostB , pixelB , segmentsB )
368368 } ;
369369
370370 odpManager . updateSettings ( newOdpIntegrationConfig ) ;
@@ -403,8 +403,8 @@ describe('OdpManager', () => {
403403 expect ( odpManager . isReady ( ) ) . toBe ( true ) ;
404404 expect ( odpManager . getStatus ( ) ) . toEqual ( Status . Running ) ;
405405
406- const newOdpIntegrationConfig : OdpNotIntegratedConfig = {
407- integrated : false ,
406+ const newOdpIntegrationConfig : OdpNotIntegratedConfig = {
407+ integrated : false ,
408408 } ;
409409
410410 odpManager . updateSettings ( newOdpIntegrationConfig ) ;
@@ -428,7 +428,7 @@ describe('OdpManager', () => {
428428 } ) ;
429429
430430 await odpManager . onReady ( ) ;
431-
431+
432432 verify ( mockEventManager . registerVuid ( anything ( ) ) ) . once ( ) ;
433433 } ) ;
434434
@@ -460,7 +460,7 @@ describe('OdpManager', () => {
460460 const [ userIdArg2 , vuidArg2 ] = capture ( mockEventManager . identifyUser ) . byCallIndex ( 1 ) ;
461461 expect ( userIdArg2 ) . toEqual ( userId ) ;
462462 expect ( vuidArg2 ) . toEqual ( undefined ) ;
463-
463+
464464 odpManager . identifyUser ( vuid ) ;
465465 const [ userIdArg3 , vuidArg3 ] = capture ( mockEventManager . identifyUser ) . byCallIndex ( 2 ) ;
466466 expect ( userIdArg3 ) . toEqual ( undefined ) ;
0 commit comments