Merge tag 'v2.2.0' of github.com:OpenZeppelin/openzeppelin-solidity
v2.2.0
This commit is contained in:
@ -84,19 +84,19 @@ contract('PaymentSplitter', function ([_, owner, payee1, payee2, payee3, nonpaye
|
||||
const initAmount1 = await balance.current(payee1);
|
||||
const { logs: logs1 } = await this.contract.release(payee1, { gasPrice: 0 });
|
||||
const profit1 = (await balance.current(payee1)).sub(initAmount1);
|
||||
profit1.should.be.bignumber.equal(ether('0.20', 'ether'));
|
||||
profit1.should.be.bignumber.equal(ether('0.20'));
|
||||
expectEvent.inLogs(logs1, 'PaymentReleased', { to: payee1, amount: profit1 });
|
||||
|
||||
const initAmount2 = await balance.current(payee2);
|
||||
const { logs: logs2 } = await this.contract.release(payee2, { gasPrice: 0 });
|
||||
const profit2 = (await balance.current(payee2)).sub(initAmount2);
|
||||
profit2.should.be.bignumber.equal(ether('0.10', 'ether'));
|
||||
profit2.should.be.bignumber.equal(ether('0.10'));
|
||||
expectEvent.inLogs(logs2, 'PaymentReleased', { to: payee2, amount: profit2 });
|
||||
|
||||
const initAmount3 = await balance.current(payee3);
|
||||
const { logs: logs3 } = await this.contract.release(payee3, { gasPrice: 0 });
|
||||
const profit3 = (await balance.current(payee3)).sub(initAmount3);
|
||||
profit3.should.be.bignumber.equal(ether('0.70', 'ether'));
|
||||
profit3.should.be.bignumber.equal(ether('0.70'));
|
||||
expectEvent.inLogs(logs3, 'PaymentReleased', { to: payee3, amount: profit3 });
|
||||
|
||||
// end balance should be zero
|
||||
|
||||
Reference in New Issue
Block a user