File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -84,10 +84,10 @@ describe('Optimizely', () => {
84
84
vi . spyOn ( odpManager , 'setLogger' ) ;
85
85
86
86
const logger = getMockLogger ( ) ;
87
- const cofigChildLogger = getMockLogger ( ) ;
87
+ const configChildLogger = getMockLogger ( ) ;
88
88
const eventProcessorChildLogger = getMockLogger ( ) ;
89
89
const odpManagerChildLogger = getMockLogger ( ) ;
90
- vi . spyOn ( logger , 'child' ) . mockReturnValueOnce ( cofigChildLogger )
90
+ vi . spyOn ( logger , 'child' ) . mockReturnValueOnce ( configChildLogger )
91
91
. mockReturnValueOnce ( eventProcessorChildLogger )
92
92
. mockReturnValueOnce ( odpManagerChildLogger ) ;
93
93
@@ -102,7 +102,7 @@ describe('Optimizely', () => {
102
102
cmabService : { } as any
103
103
} ) ;
104
104
105
- expect ( projectConfigManager . setLogger ) . toHaveBeenCalledWith ( cofigChildLogger ) ;
105
+ expect ( projectConfigManager . setLogger ) . toHaveBeenCalledWith ( configChildLogger ) ;
106
106
expect ( eventProcessor . setLogger ) . toHaveBeenCalledWith ( eventProcessorChildLogger ) ;
107
107
expect ( odpManager . setLogger ) . toHaveBeenCalledWith ( odpManagerChildLogger ) ;
108
108
} ) ;
You can’t perform that action at this time.
0 commit comments