Skip to content

Commit

Permalink
fix test failure
Browse files Browse the repository at this point in the history
  • Loading branch information
ryu9827 committed Mar 21, 2018
1 parent c66ff57 commit e9fd359
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/NormalSale.js
Original file line number Diff line number Diff line change
Expand Up @@ -1273,8 +1273,8 @@ contract('NormalSale', function ([deployer, investor, wallet, purchaser, purchas
let event = logs.find(e => e.event === 'TokenPurchase')

should.exist(event)
event.args._purchaser.should.equal(investor)
event.args._beneficiary.should.equal(investor)
event.args._purchaser.should.equal(purchaser)
event.args._beneficiary.should.equal(purchaser)
event.args._value.should.be.bignumber.equal(minContribution)
event.args._amount.should.be.bignumber.equal(minContribution.mul(rate).mul(hourBonuses[0]).div(100))
event.args._participants.should.be.bignumber.equal(2)
Expand Down

0 comments on commit e9fd359

Please sign in to comment.