@@ -138,7 +138,7 @@ describe('OdpManager', () => {
138138 it ( 'should call initialzeVuid on construction if vuid is enabled' , ( ) => {
139139 const vuidInitializer = jest . fn ( ) ;
140140
141- const odpManager = testOdpManager ( {
141+ const odpManager = testOdpManager ( {
142142 segmentManager,
143143 eventManager,
144144 logger,
@@ -214,7 +214,7 @@ describe('OdpManager', () => {
214214
215215 const odpIntegrationConfig : OdpNotIntegratedConfig = { integrated : false } ;
216216 odpManager . updateSettings ( odpIntegrationConfig ) ;
217-
217+
218218 await wait ( 500 ) ;
219219 expect ( odpManager . isReady ( ) ) . toBe ( false ) ;
220220
@@ -268,7 +268,7 @@ 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 ( ) => {
@@ -280,7 +280,7 @@ describe('OdpManager', () => {
280280 odpConfig : new OdpConfig ( keyA , hostA , pixelA , segmentsA )
281281 } ;
282282
283- testOdpManager ( {
283+ const odpManager = testOdpManager ( {
284284 odpIntegrationConfig,
285285 segmentManager,
286286 eventManager,
@@ -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