Skip to content
This repository was archived by the owner on Jul 6, 2022. It is now read-only.

Commit 55e9a04

Browse files
author
Victor Wiebe
committed
fix: 🐛 lint issue
1 parent 6f3e0a0 commit 55e9a04

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/contract_wrappers/modules/transfer_manager/__tests__/lock_up_transfer_manager_wrapper.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1501,7 +1501,7 @@ describe('LockUpTransferManagerWrapper', () => {
15011501
mockedGetLockupMethod.callAsync(objectContaining(stringToBytes32(mockedGetLockupParams.lockupName))),
15021502
).thenResolve(expectedGetLockupResult);
15031503

1504-
const expectedListOfAddressesResult = [];
1504+
const expectedListOfAddressesResult: string[] = [];
15051505

15061506
const mockedListOfAddressesParams = {
15071507
lockupName,
@@ -1618,7 +1618,7 @@ describe('LockUpTransferManagerWrapper', () => {
16181618
// Stub the method
16191619
when(mockedContract.getLockUp).thenReturn(instance(mockedGetLockupMethod));
16201620

1621-
const expectedListOfAddressesResult = [];
1621+
const expectedListOfAddressesResult: string[] = [];
16221622
// Mocked method
16231623
const mockedListOfAddressesMethod = mock(MockedCallMethod);
16241624
// Stub the method

0 commit comments

Comments
 (0)