From 61b5921ab21e8e092f0270c385522cb42b29f155 Mon Sep 17 00:00:00 2001 From: Chris Whinfrey Date: Fri, 10 Nov 2017 20:20:44 -0500 Subject: [PATCH] Fix typo --- test/CappedToken.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/CappedToken.js b/test/CappedToken.js index 34955dbf1..1f60dc8eb 100644 --- a/test/CappedToken.js +++ b/test/CappedToken.js @@ -21,7 +21,7 @@ contract('Capped', function(accounts) { assert.equal(cap.toNumber(), _cap.toNumber()); }) - it('should mint when amount does amount does not exceed the cap', async function() { + it('should mint when amount is less than cap', async function() { const result = await token.mint(accounts[0], 100); assert.equal(result.logs[0].event, 'Mint'); })