Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Fix typo
  • Loading branch information
cwhinfrey committed Nov 11, 2017
commit 61b5921ab21e8e092f0270c385522cb42b29f155
2 changes: 1 addition & 1 deletion test/CappedToken.js
Original file line number Diff line number Diff line change
Expand Up @@ -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');
})
Expand Down