* Add Mock suffix to variable names #1172 * Add Impl suffix to variable names
This commit is contained in:
@ -4,7 +4,7 @@ const {
|
||||
} = require('./ERC721MintBurn.behavior');
|
||||
|
||||
const BigNumber = web3.BigNumber;
|
||||
const ERC721Mintable = artifacts.require('ERC721MintableBurnableImpl.sol');
|
||||
const ERC721MintableImpl = artifacts.require('ERC721MintableBurnableImpl.sol');
|
||||
|
||||
require('chai')
|
||||
.use(require('chai-bignumber')(BigNumber))
|
||||
@ -14,7 +14,7 @@ contract('ERC721Mintable', function ([_, creator, ...accounts]) {
|
||||
const minter = creator;
|
||||
|
||||
beforeEach(async function () {
|
||||
this.token = await ERC721Mintable.new({
|
||||
this.token = await ERC721MintableImpl.new({
|
||||
from: creator,
|
||||
});
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user