feat: manually fix linting errors across tests

This commit is contained in:
Matt Condon
2017-11-24 15:37:36 +02:00
parent 227a335399
commit d07bdccc0c
23 changed files with 70 additions and 63 deletions

View File

@ -1,6 +1,4 @@
const assertRevert = require('./helpers/assertRevert');
var Contactable = artifacts.require('../contracts/ownership/Contactable.sol');
contract('Contactable', function (accounts) {
@ -12,7 +10,7 @@ contract('Contactable', function (accounts) {
it('should have an empty contact info', async function () {
let info = await contactable.contactInformation();
assert.isTrue(info == '');
assert.isTrue(info === '');
});
describe('after setting the contact information', function () {