remove arrow functions from js tests (#1225)

This commit is contained in:
jacob
2018-08-21 14:30:14 -05:00
committed by Nicolás Venturo
parent 7618b91d9c
commit 64c324e37c
7 changed files with 34 additions and 34 deletions

View File

@ -13,7 +13,7 @@ contract('HasNoTokens', function ([_, owner, initialAccount, anyone]) {
let hasNoTokens = null;
let token = null;
beforeEach(async () => {
beforeEach(async function () {
// Create contract and token
hasNoTokens = await HasNoTokens.new({ from: owner });
token = await ERC223TokenMock.new(initialAccount, 100);