Remove unused variables in tests (#3852)

This commit is contained in:
Hagen Hübel
2022-12-05 21:25:53 +01:00
committed by GitHub
parent 93cd2ecb73
commit 206a239448
4 changed files with 10 additions and 10 deletions

View File

@ -2,7 +2,7 @@
const { BN, constants, expectEvent, expectRevert, time } = require('@openzeppelin/test-helpers');
const { expect } = require('chai');
const { MAX_UINT256, ZERO_ADDRESS, ZERO_BYTES32 } = constants;
const { MAX_UINT256, ZERO_ADDRESS } = constants;
const { fromRpcSig } = require('ethereumjs-util');
const ethSigUtil = require('eth-sig-util');
@ -20,7 +20,7 @@ const Delegation = [
];
contract('ERC20VotesComp', function (accounts) {
const [ holder, recipient, holderDelegatee, recipientDelegatee, other1, other2 ] = accounts;
const [ holder, recipient, holderDelegatee, other1, other2 ] = accounts;
const name = 'My Token';
const symbol = 'MTKN';