Browse Source

try to fix travis 2

Manuel Araoz 8 years ago
parent
commit
960500a078
1 changed files with 1 additions and 1 deletions
  1. 1 1
      test/StandardToken.js

+ 1 - 1
test/StandardToken.js

@@ -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]);