File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -84,10 +84,10 @@ describe('Optimizely', () => {
8484 vi . spyOn ( odpManager , 'setLogger' ) ;
8585
8686 const logger = getMockLogger ( ) ;
87- const cofigChildLogger = getMockLogger ( ) ;
87+ const configChildLogger = getMockLogger ( ) ;
8888 const eventProcessorChildLogger = getMockLogger ( ) ;
8989 const odpManagerChildLogger = getMockLogger ( ) ;
90- vi . spyOn ( logger , 'child' ) . mockReturnValueOnce ( cofigChildLogger )
90+ vi . spyOn ( logger , 'child' ) . mockReturnValueOnce ( configChildLogger )
9191 . mockReturnValueOnce ( eventProcessorChildLogger )
9292 . mockReturnValueOnce ( odpManagerChildLogger ) ;
9393
@@ -102,7 +102,7 @@ describe('Optimizely', () => {
102102 cmabService : { } as any
103103 } ) ;
104104
105- expect ( projectConfigManager . setLogger ) . toHaveBeenCalledWith ( cofigChildLogger ) ;
105+ expect ( projectConfigManager . setLogger ) . toHaveBeenCalledWith ( configChildLogger ) ;
106106 expect ( eventProcessor . setLogger ) . toHaveBeenCalledWith ( eventProcessorChildLogger ) ;
107107 expect ( odpManager . setLogger ) . toHaveBeenCalledWith ( odpManagerChildLogger ) ;
108108 } ) ;
You can’t perform that action at this time.
0 commit comments