Skip to content

Commit 2fa4afd

Browse files
committed
fix: update format
Signed-off-by: Valerii Svydenko <[email protected]>
1 parent 1b8aac8 commit 2fa4afd

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/main.spec.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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(() => {

0 commit comments

Comments
 (0)