Add Mock suffix to variable names #1172 (#1324)

* Add Mock suffix to variable names #1172

* Add Impl suffix to variable names
This commit is contained in:
Martín
2018-09-18 16:24:51 -03:00
committed by Nicolás Venturo
parent d062352de7
commit 4b21fcf5af
18 changed files with 50 additions and 48 deletions

View File

@ -1,11 +1,11 @@
const { assertRevert } = require('../../helpers/assertRevert');
const ERC20Pausable = artifacts.require('ERC20PausableMock');
const ERC20PausableMock = artifacts.require('ERC20PausableMock');
const { shouldBehaveLikePublicRole } = require('../../access/roles/PublicRole.behavior');
contract('ERC20Pausable', function ([_, pauser, otherPauser, recipient, anotherAccount, ...otherAccounts]) {
beforeEach(async function () {
this.token = await ERC20Pausable.new(pauser, 100, { from: pauser });
this.token = await ERC20PausableMock.new(pauser, 100, { from: pauser });
});
describe('pauser role', function () {