Commit 960500a0 by Manuel Araoz

try to fix travis 2

parent ce25e2db
...@@ -12,7 +12,7 @@ contract('StandardToken', function(accounts) { ...@@ -12,7 +12,7 @@ contract('StandardToken', function(accounts) {
assert.equal(totalSupply, 100); 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(); let token = await StandardTokenMock.new();
await token.approve(accounts[1], 100); await token.approve(accounts[1], 100);
let allowance = await token.allowance(accounts[0], accounts[1]); let allowance = await token.allowance(accounts[0], accounts[1]);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment