Commit 61b5921a by Chris Whinfrey

Fix typo

parent 575372f6
...@@ -21,7 +21,7 @@ contract('Capped', function(accounts) { ...@@ -21,7 +21,7 @@ contract('Capped', function(accounts) {
assert.equal(cap.toNumber(), _cap.toNumber()); 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); const result = await token.mint(accounts[0], 100);
assert.equal(result.logs[0].event, 'Mint'); assert.equal(result.logs[0].event, 'Mint');
}) })
......
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