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,14 +1,14 @@
const { shouldSupportInterfaces } = require('./SupportsInterface.behavior');
const { assertRevert } = require('../helpers/assertRevert');
const ERC165 = artifacts.require('ERC165Mock');
const ERC165Mock = artifacts.require('ERC165Mock');
require('chai')
.should();
contract('ERC165', function () {
beforeEach(async function () {
this.mock = await ERC165.new();
this.mock = await ERC165Mock.new();
});
it('does not allow 0xffffffff', async function () {