From bbe0eefd9f070e6020a5e491177996616370558d Mon Sep 17 00:00:00 2001 From: ckshei Date: Fri, 12 Apr 2019 09:25:21 -0700 Subject: [PATCH] removing unused variables (#1719) * removing unused variables * undeleting the _ --- test/token/ERC721/ERC721MintBurn.behavior.js | 2 +- test/token/ERC721/ERC721Pausable.test.js | 2 -- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/test/token/ERC721/ERC721MintBurn.behavior.js b/test/token/ERC721/ERC721MintBurn.behavior.js index 279e08837..d629bed9c 100644 --- a/test/token/ERC721/ERC721MintBurn.behavior.js +++ b/test/token/ERC721/ERC721MintBurn.behavior.js @@ -4,7 +4,7 @@ const { ZERO_ADDRESS } = constants; function shouldBehaveLikeMintAndBurnERC721 ( creator, minter, - [owner, newOwner, approved, other] + [owner, newOwner, approved] ) { const firstTokenId = new BN(1); const secondTokenId = new BN(2); diff --git a/test/token/ERC721/ERC721Pausable.test.js b/test/token/ERC721/ERC721Pausable.test.js index 840e1a905..d67467455 100644 --- a/test/token/ERC721/ERC721Pausable.test.js +++ b/test/token/ERC721/ERC721Pausable.test.js @@ -8,8 +8,6 @@ const ERC721PausableMock = artifacts.require('ERC721PausableMock.sol'); contract('ERC721Pausable', function ([ _, creator, - owner, - operator, otherPauser, ...accounts ]) {