removing unused variables (#1719)

* removing unused variables

* undeleting the _
This commit is contained in:
ckshei
2019-04-12 09:25:21 -07:00
committed by Nicolás Venturo
parent 19c705d928
commit bbe0eefd9f
2 changed files with 1 additions and 3 deletions

View File

@ -4,7 +4,7 @@ const { ZERO_ADDRESS } = constants;
function shouldBehaveLikeMintAndBurnERC721 ( function shouldBehaveLikeMintAndBurnERC721 (
creator, creator,
minter, minter,
[owner, newOwner, approved, other] [owner, newOwner, approved]
) { ) {
const firstTokenId = new BN(1); const firstTokenId = new BN(1);
const secondTokenId = new BN(2); const secondTokenId = new BN(2);

View File

@ -8,8 +8,6 @@ const ERC721PausableMock = artifacts.require('ERC721PausableMock.sol');
contract('ERC721Pausable', function ([ contract('ERC721Pausable', function ([
_, _,
creator, creator,
owner,
operator,
otherPauser, otherPauser,
...accounts ...accounts
]) { ]) {