Skip to content

Commit

Permalink
Fix linter
Browse files Browse the repository at this point in the history
  • Loading branch information
zZoMROT committed Oct 25, 2023
1 parent 9986097 commit 78e2106
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions test/Settlement.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
const { time, expect, ether, trim0x, timeIncreaseTo, getPermit, getPermit2, compressPermit, permit2Contract, deployContract, constants } = require('@1inch/solidity-utils');
const { time, expect, ether, trim0x, timeIncreaseTo, getPermit, getPermit2, compressPermit, permit2Contract, deployContract } = require('@1inch/solidity-utils');
const { loadFixture } = require('@nomicfoundation/hardhat-network-helpers');
const { ethers } = require('hardhat');
const { deploySwapTokens, getChainId } = require('./helpers/fixtures');
Expand Down Expand Up @@ -322,7 +322,7 @@ describe('Settlement', function () {
it('unidirectional recursive swap', async function () {
const dataFormFixture = await loadFixture(initContracts);
const {
contracts: { dai, weth, settlement, resolver },
contracts: { dai, weth, resolver },
accounts: { owner, alice },
others: { abiCoder },
} = dataFormFixture;
Expand Down Expand Up @@ -384,7 +384,7 @@ describe('Settlement', function () {
it('triple recursive swap', async function () {
const dataFormFixture = await loadFixture(initContracts);
const {
contracts: { dai, weth, settlement, resolver },
contracts: { dai, weth, resolver },
accounts: { owner, alice },
} = dataFormFixture;

Expand Down Expand Up @@ -791,7 +791,7 @@ describe('Settlement', function () {
it('should not change when availableCredit is not enough', async function () {
const dataFormFixture = await loadFixture(initContracts);
const {
contracts: { dai, weth, settlement, resolver },
contracts: { dai, weth, resolver },
accounts: { owner, alice },
others: { BACK_ORDER_FEE },
} = dataFormFixture;
Expand Down Expand Up @@ -843,7 +843,7 @@ describe('Settlement', function () {
it('should change only after whitelistedCutOff', async function () {
const dataFormFixture = await loadFixture(initContracts);
const {
contracts: { dai, weth, settlement, resolver },
contracts: { dai, weth, resolver },
accounts: { owner, alice },
} = dataFormFixture;

Expand Down

0 comments on commit 78e2106

Please sign in to comment.