* Add Mock suffix to variable names #1172 * Add Impl suffix to variable names
This commit is contained in:
@ -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 () {
|
||||
|
||||
Reference in New Issue
Block a user