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
Add semicolon to match coding standards
  • Loading branch information
pooleja committed Jul 22, 2017
commit 64787b1ac57702b7b16dd311394b94b7a8123a1c
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