Fix connect unused vars
This commit is contained in:
@@ -81,7 +81,7 @@ contract('EtherTokenV2', (accounts: string[]) => {
|
||||
const logArgs = (logs[0] as any).args;
|
||||
expect(logArgs._from).to.equal(expectedFrom);
|
||||
expect(logArgs._to).to.equal(expectedTo);
|
||||
expect(logArgs._value).to.be.bignumber.equal(ethToDeposit);
|
||||
expect(logArgs._value).to.be.bignumber.equal(expectedValue);
|
||||
});
|
||||
});
|
||||
|
||||
@@ -120,7 +120,6 @@ contract('EtherTokenV2', (accounts: string[]) => {
|
||||
|
||||
it('should log 1 event with correct arguments', async () => {
|
||||
const initEthTokenBalance = await zeroEx.token.getBalanceAsync(etherTokenAddress, account);
|
||||
const initEthBalance = await getEthBalanceAsync(account);
|
||||
const ethTokensToWithdraw = initEthTokenBalance;
|
||||
expect(ethTokensToWithdraw).to.not.be.bignumber.equal(0);
|
||||
const txHash = await zeroEx.etherToken.withdrawAsync(ethTokensToWithdraw, account, {
|
||||
@@ -137,7 +136,7 @@ contract('EtherTokenV2', (accounts: string[]) => {
|
||||
const logArgs = (logs[0] as any).args;
|
||||
expect(logArgs._from).to.equal(expectedFrom);
|
||||
expect(logArgs._to).to.equal(expectedTo);
|
||||
expect(logArgs._value).to.be.bignumber.equal(ethTokensToWithdraw);
|
||||
expect(logArgs._value).to.be.bignumber.equal(expectedValue);
|
||||
});
|
||||
});
|
||||
|
||||
|
@@ -748,7 +748,6 @@ contract('Exchange', (accounts: string[]) => {
|
||||
|
||||
const res = await exWrapper.cancelOrderAsync(order, maker);
|
||||
expect(res.logs).to.have.length(1);
|
||||
const errId = res.logs[0].args.errorId.toNumber();
|
||||
const errCode = res.logs[0].args.errorId.toNumber();
|
||||
expect(errCode).to.be.equal(ExchangeContractErrs.ERROR_ORDER_FULLY_FILLED_OR_CANCELLED);
|
||||
});
|
||||
|
@@ -227,8 +227,6 @@ contract('Exchange', (accounts: string[]) => {
|
||||
|
||||
it('should throw if a single order does not fill the expected amount', async () => {
|
||||
const fillTakerTokenAmounts: BigNumber[] = [];
|
||||
const makerToken = rep.address;
|
||||
const takerToken = dgd.address;
|
||||
orders.forEach(order => {
|
||||
const fillTakerTokenAmount = order.params.takerTokenAmount.div(2);
|
||||
fillTakerTokenAmounts.push(fillTakerTokenAmount);
|
||||
@@ -311,7 +309,7 @@ contract('Exchange', (accounts: string[]) => {
|
||||
const cancelTakerTokenAmounts = _.map(orders, order => order.params.takerTokenAmount);
|
||||
await exWrapper.batchCancelOrdersAsync(orders, maker, {cancelTakerTokenAmounts});
|
||||
|
||||
const res = await exWrapper.batchFillOrdersAsync(
|
||||
await exWrapper.batchFillOrdersAsync(
|
||||
orders, taker, {fillTakerTokenAmounts: cancelTakerTokenAmounts});
|
||||
const newBalances = await dmyBalances.getAsync();
|
||||
expect(balances).to.be.deep.equal(newBalances);
|
||||
|
Reference in New Issue
Block a user