This commit is contained in:
Michael Zhu
2019-07-23 23:42:44 -07:00
parent 26bfcccedc
commit 3da55ad836
2 changed files with 2 additions and 1 deletions

View File

@@ -22,6 +22,7 @@ pragma experimental ABIEncoderV2;
import "./MixinForwarderCore.sol";
import "./libs/LibConstants.sol";
// solhint-disable no-empty-blocks
// MixinAssets, MixinExchangeWrapper, and MixinWeth are all inherited via
// MixinForwarderCore.

View File

@@ -336,7 +336,7 @@ export class ForwarderTestFactory {
}
if (makerAssetContract instanceof DummyERC20TokenContract) {
await this._checkErc20Balances(erc20Balances, newBalances, expectedResults, makerAssetContract);
this._checkErc20Balances(erc20Balances, newBalances, expectedResults, makerAssetContract);
} else if (options.makerAssetId !== undefined) {
const newOwner = await makerAssetContract.ownerOf.callAsync(options.makerAssetId);
expect(newOwner).to.be.bignumber.equal(this._takerAddress);