try to fix travis 2

This commit is contained in:
Manuel Araoz
2017-03-20 15:19:14 -03:00
parent ce25e2db98
commit 960500a078

View File

@ -12,7 +12,7 @@ contract('StandardToken', function(accounts) {
assert.equal(totalSupply, 100);
});
it.only('should return the correct allowance amount after approval', async function() {
it('should return the correct allowance amount after approval', async function() {
let token = await StandardTokenMock.new();
await token.approve(accounts[1], 100);
let allowance = await token.allowance(accounts[0], accounts[1]);