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,5 +1,5 @@
const Counter = artifacts.require('CounterImpl');
const CounterImpl = artifacts.require('CounterImpl');
require('chai')
.use(require('chai-bignumber')(web3.BigNumber))
@ -11,7 +11,7 @@ const KEY2 = web3.sha3('key2');
contract('Counter', function ([_, owner]) {
beforeEach(async function () {
this.mock = await Counter.new({ from: owner });
this.mock = await CounterImpl.new({ from: owner });
});
context('custom key', async function () {