File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -102,7 +102,7 @@ describe('Test Main with stubs', () => {
102102
103103 spyInitBindings = jest . spyOn ( InversifyBinding . prototype , 'initBindings' ) ;
104104 spyInitBindings . mockImplementation ( ( ) => Promise . resolve ( container ) ) ;
105- toSelfMethod . mockReturnValue ( selfMock ) , containerBindMethod . mockReturnValue ( bindMock ) ;
105+ ( toSelfMethod . mockReturnValue ( selfMock ) , containerBindMethod . mockReturnValue ( bindMock ) ) ;
106106 containerGetMethod . mockReturnValueOnce ( generateMock ) ;
107107 } ) ;
108108
@@ -354,7 +354,7 @@ describe('Test Main with stubs', () => {
354354 beforeEach ( ( ) => {
355355 spyInitBindings = jest . spyOn ( InversifyBinding . prototype , 'initBindings' ) ;
356356 spyInitBindings . mockImplementation ( ( ) => Promise . resolve ( container ) ) ;
357- toSelfMethod . mockReturnValue ( selfMock ) , containerBindMethod . mockReturnValue ( bindMock ) ;
357+ ( toSelfMethod . mockReturnValue ( selfMock ) , containerBindMethod . mockReturnValue ( bindMock ) ) ;
358358 } ) ;
359359
360360 afterEach ( ( ) => {
You can’t perform that action at this time.
0 commit comments