Add an explanatory comment

This commit is contained in:
Leonid Logvinov
2017-08-24 18:07:29 +02:00
parent 79dcc1660e
commit a2d579b201

View File

@@ -242,7 +242,10 @@ describe('TokenWrapper', () => {
const normalGasCost = initBalanceWithNormalAllowance.minus(finalBalanceWithNormalAllowance);
const unlimitedGasCost = initBalanceWithUnlimitedAllowance.minus(finalBalanceWithUnlimitedAllowance);
expect(normalGasCost.toNumber()).to.be.gt(unlimitedGasCost.toNumber());
// In theory the gas cost with unlimited allowance should be smaller, but with testrpc it's actually bigger.
// This needs to be investigated in ethereumjs-vm. This test is essentially a repro.
// TODO: Make this test pass with inverted assertion.
expect(unlimitedGasCost.toNumber()).to.be.gt(normalGasCost.toNumber());
});
});
describe('#getAllowanceAsync', () => {