* Add Mock suffix to variable names #1172 * Add Impl suffix to variable names
This commit is contained in:
@ -1,4 +1,4 @@
|
||||
const ERC20WithMetadata = artifacts.require('ERC20WithMetadataMock');
|
||||
const ERC20WithMetadataMock = artifacts.require('ERC20WithMetadataMock');
|
||||
|
||||
require('chai')
|
||||
.should();
|
||||
@ -7,7 +7,7 @@ const metadataURI = 'https://example.com';
|
||||
|
||||
describe('ERC20WithMetadata', function () {
|
||||
beforeEach(async function () {
|
||||
this.token = await ERC20WithMetadata.new(metadataURI);
|
||||
this.token = await ERC20WithMetadataMock.new(metadataURI);
|
||||
});
|
||||
|
||||
it('responds with the metadata', async function () {
|
||||
|
||||
Reference in New Issue
Block a user