Commit 4cbcaf35 by Nicolás Venturo

Fix linter errors

parent 73baf0b6
...@@ -144,11 +144,11 @@ describe('AccessControl', function () { ...@@ -144,11 +144,11 @@ describe('AccessControl', function () {
beforeEach(async function () { beforeEach(async function () {
const receipt = await this.accessControl.setRoleAdmin(ROLE, OTHER_ROLE); const receipt = await this.accessControl.setRoleAdmin(ROLE, OTHER_ROLE);
expectEvent(receipt, 'RoleAdminChanged', { expectEvent(receipt, 'RoleAdminChanged', {
role: ROLE, role: ROLE,
previousAdminRole: DEFAULT_ADMIN_ROLE, previousAdminRole: DEFAULT_ADMIN_ROLE,
newAdminRole: OTHER_ROLE newAdminRole: OTHER_ROLE,
}); });
await this.accessControl.grantRole(OTHER_ROLE, otherAdmin, { from: admin }); await this.accessControl.grantRole(OTHER_ROLE, otherAdmin, { from: admin });
}); });
......
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