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

Commit e26c334

Browse files
author
Victor Wiebe
committed
fix: erc20 wrapper tests adding proper reference
1 parent 7af96f7 commit e26c334

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/contract_wrappers/tokens/__tests__/erc20_wrapper.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -202,7 +202,7 @@ describe('ERC20TokenWrapper', () => {
202202

203203
const mockedNameMethod = mock(MockedCallMethod);
204204
when(mockedContract.name).thenReturn(instance(mockedNameMethod));
205-
when(mockedSymbolMethod.callAsync()).thenResolve(expectedStringResult);
205+
when(mockedNameMethod.callAsync()).thenResolve(expectedStringResult);
206206

207207
const expectedIsValidResult = true;
208208
const result = await target.isValidContract();

0 commit comments

Comments
 (0)