Skip to content

Commit

Permalink
3
Browse files Browse the repository at this point in the history
  • Loading branch information
facuspagnuolo committed Jan 28, 2018
1 parent 77f2aec commit 4bf6092
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/token/PausableToken.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ const PausableToken = artifacts.require('PausableTokenMock');

contract('PausableToken', function ([_, owner, recipient, anotherAccount]) {
beforeEach(async function () {
this.token = await PausableToken.new(owner, 100);
this.token = await PausableToken.new(owner, 100, { from: owner });
});

describe('pause', function () {
Expand Down

0 comments on commit 4bf6092

Please sign in to comment.