From b4c29328155c4da1d3052777c5c835a8eef0a203 Mon Sep 17 00:00:00 2001 From: Lint Action Date: Tue, 28 Nov 2023 19:56:12 +0000 Subject: [PATCH] Fix code style issues with Prettier --- test/rBRLLPool.js | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/test/rBRLLPool.js b/test/rBRLLPool.js index f3b21e9..b173103 100644 --- a/test/rBRLLPool.js +++ b/test/rBRLLPool.js @@ -44,21 +44,21 @@ describe("rBRLLPool", function () { beforeEach("load fixture", async () => { const provider = new ethers.providers.JsonRpcProvider("http://localhost:8545") ethers.provider = provider - ;[admin, deployer, drexInvestor, tselicInvestor, feeCollector] = await ethers.getSigners() - // deploy tokens - ; ({ drexToken, tselicToken } = await deployTokensFixture( - deployer, - drexInvestor, - tselicInvestor - )) + ;[admin, deployer, drexInvestor, tselicInvestor, feeCollector] = await ethers.getSigners() + // deploy tokens + ;({ drexToken, tselicToken } = await deployTokensFixture( + deployer, + drexInvestor, + tselicInvestor + )) swapRouter = await deployUniPoolFixture(deployer, tselicToken, drexToken) if (TEST_CHAINLINK) { - ; ({ functionsAddresses, autoConsumerContract } = await deployLocalChainlinkFunctions( + ;({ functionsAddresses, autoConsumerContract } = await deployLocalChainlinkFunctions( admin, deployer )) } else { - ; ({ autoConsumerContract } = await deployMockPriceFeedFixture(deployer)) + ;({ autoConsumerContract } = await deployMockPriceFeedFixture(deployer)) } rbrllpool = await deployrBRLLPoolFixture(admin, deployer, tselicToken, drexToken)