remove token.finishMinting() from default finalization

This commit is contained in:
Francisco Giordano
2017-08-12 21:33:32 -03:00
parent e6a7a978d1
commit 4fc6bb7977
2 changed files with 9 additions and 15 deletions

View File

@ -60,11 +60,4 @@ contract('FinalizableCrowdsale', function ([_, owner, wallet, thirdparty]) {
should.exist(event)
})
it('finishes minting of token', async function () {
await increaseTimeTo(this.afterEndTime)
await this.crowdsale.finalize({from: owner})
const finished = await this.token.mintingFinished()
finished.should.equal(true)
})
})