Skip to content

Commit

Permalink
Add semicolon to match coding standards
Browse files Browse the repository at this point in the history
  • Loading branch information
pooleja committed Jul 22, 2017
1 parent 58fdb95 commit 64787b1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/Ownable.js
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ contract('Ownable', function(accounts) {
let originalOwner = await ownable.owner();
try {
await ownable.transferOwnership(null, {from: originalOwner});
assert.fail()
assert.fail();
} catch(error) {
assertJump(error);
}
Expand Down

0 comments on commit 64787b1

Please # to comment.