From 960500a0785a4ec1a845525c11075514589b0c6b Mon Sep 17 00:00:00 2001 From: Manuel Araoz Date: Mon, 20 Mar 2017 15:19:14 -0300 Subject: [PATCH] try to fix travis 2 --- test/StandardToken.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/StandardToken.js b/test/StandardToken.js index c9bad8ead..e3f578726 100644 --- a/test/StandardToken.js +++ b/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]);