From 391e8c090e4a9ef61dfed4365804c9a2dce1067f Mon Sep 17 00:00:00 2001 From: Drygin Date: Mon, 24 Jan 2022 18:40:45 +0300 Subject: [PATCH] fix linter --- test/full.test.js | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/test/full.test.js b/test/full.test.js index 2203658..5fb53e4 100644 --- a/test/full.test.js +++ b/test/full.test.js @@ -96,10 +96,7 @@ describe('TornadoPool', function () { const newWithdrawalLimit = utils.parseEther('0.01337') const newDepositLimit = utils.parseEther('1337') - await tornadoPool.connect(multisig).configureLimits( - newWithdrawalLimit, - newDepositLimit, - ) + await tornadoPool.connect(multisig).configureLimits(newWithdrawalLimit, newDepositLimit) expect(await tornadoPool.maximumDepositAmount()).to.be.equal(newDepositLimit) expect(await tornadoPool.minimalWithdrawalAmount()).to.be.equal(newWithdrawalLimit)