Move PublicRole.behavior to behavior directory.
This commit is contained in:
@ -1,6 +1,6 @@
|
||||
const { shouldBehaveLikeERC20Mintable } = require('./behaviors/ERC20Mintable.behavior');
|
||||
const ERC20MintableMock = artifacts.require('ERC20MintableMock');
|
||||
const { shouldBehaveLikePublicRole } = require('../../access/roles/PublicRole.behavior');
|
||||
const { shouldBehaveLikePublicRole } = require('../../behavior/access/roles/PublicRole.behavior');
|
||||
|
||||
contract('ERC20Mintable', function ([_, minter, otherMinter, ...otherAccounts]) {
|
||||
beforeEach(async function () {
|
||||
|
||||
@ -1,7 +1,7 @@
|
||||
const { BN, expectEvent, shouldFail } = require('openzeppelin-test-helpers');
|
||||
|
||||
const ERC20PausableMock = artifacts.require('ERC20PausableMock');
|
||||
const { shouldBehaveLikePublicRole } = require('../../access/roles/PublicRole.behavior');
|
||||
const { shouldBehaveLikePublicRole } = require('../../behavior/access/roles/PublicRole.behavior');
|
||||
|
||||
contract('ERC20Pausable', function ([_, pauser, otherPauser, recipient, anotherAccount, ...otherAccounts]) {
|
||||
const initialSupply = new BN(100);
|
||||
|
||||
Reference in New Issue
Block a user