@@ -51,10 +51,9 @@ function checkNodes(nodes: string[] | BigNumber[]) {
5151describe ( 'BinaryHeap' , async ( ) => {
5252 describe ( 'Bytes32Heap' , async ( ) => {
5353 let instance : BinaryHeapBytes32Mock ;
54- let deployer : SignerWithAddress ;
5554
5655 beforeEach ( async ( ) => {
57- [ deployer ] = await ethers . getSigners ( ) ;
56+ const [ deployer ] = await ethers . getSigners ( ) ;
5857 instance = await new BinaryHeapBytes32Mock__factory ( deployer ) . deploy ( ) ;
5958 } ) ;
6059
@@ -299,10 +298,9 @@ describe('BinaryHeap', async () => {
299298
300299 describe ( 'AddressHeap' , async ( ) => {
301300 let instance : BinaryHeapAddressMock ;
302- let deployer : SignerWithAddress ;
303301
304302 beforeEach ( async ( ) => {
305- [ deployer ] = await ethers . getSigners ( ) ;
303+ const [ deployer ] = await ethers . getSigners ( ) ;
306304 instance = await new BinaryHeapAddressMock__factory ( deployer ) . deploy ( ) ;
307305 } ) ;
308306
@@ -547,10 +545,9 @@ describe('BinaryHeap', async () => {
547545
548546 describe ( 'UintHeap' , async ( ) => {
549547 let instance : BinaryHeapUintMock ;
550- let deployer : SignerWithAddress ;
551548
552549 beforeEach ( async ( ) => {
553- [ deployer ] = await ethers . getSigners ( ) ;
550+ const [ deployer ] = await ethers . getSigners ( ) ;
554551 instance = await new BinaryHeapUintMock__factory ( deployer ) . deploy ( ) ;
555552 } ) ;
556553
0 commit comments