Skip to content

Commit

Permalink
Fix staking history test
Browse files Browse the repository at this point in the history
  • Loading branch information
izqui committed Aug 22, 2018
1 parent 73df292 commit 2d72cdf
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions future-apps/staking/test/staking-history.js
Expand Up @@ -12,8 +12,9 @@ contract('StakingHistory app', accounts => {
const balance = 1000

beforeEach(async () => {
app = await StandardToken.new()
token = await StakingHistory.new(owner, balance)
app = await StakingHistory.new()
token = await StandardToken.new(owner, balance)

await app.initialize(token.address, '', '', '')
await app.disableBlockNumberMocking()
})
Expand Down

0 comments on commit 2d72cdf

Please sign in to comment.