From b9dcab1ee30446f86f6fd17a1fc3b84ef23c3f7e Mon Sep 17 00:00:00 2001 From: Kostiantyn Smyrnov Date: Mon, 29 May 2023 18:56:33 +0200 Subject: [PATCH] =?UTF-8?q?fix:=20=F0=9F=90=9B=20Fixed=20invalid=20path=20?= =?UTF-8?q?to=20utils?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- test/EntitiesRegistry.test.ts | 2 +- test/Market.test.ts | 2 +- test/setup.ts | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/test/EntitiesRegistry.test.ts b/test/EntitiesRegistry.test.ts index 4244801..13b8088 100644 --- a/test/EntitiesRegistry.test.ts +++ b/test/EntitiesRegistry.test.ts @@ -1,6 +1,6 @@ import { expect } from "chai"; import { BigNumber, constants } from "ethers"; -import { minDeposit, kinds } from "../temp/utils/constants"; +import { minDeposit, kinds } from "../utils"; import { randomId, createSupplierId, createPermitSignature } from "./utils"; import { User, setup, registerEntity } from "./setup"; diff --git a/test/Market.test.ts b/test/Market.test.ts index 43d3921..3d73b50 100644 --- a/test/Market.test.ts +++ b/test/Market.test.ts @@ -2,7 +2,7 @@ import { expect } from "chai"; import { BigNumber, constants } from "ethers"; import { ethers } from "hardhat"; import { TransferEventObject } from "../typechain/contracts/Market"; -import { kinds } from "../temp/utils/constants"; +import { kinds } from "../utils"; import { Offer } from "../utils/types"; import { structEqual, diff --git a/test/setup.ts b/test/setup.ts index 2b85c0f..ba46816 100644 --- a/test/setup.ts +++ b/test/setup.ts @@ -8,7 +8,7 @@ import { } from "../typechain"; import { ethers, deployments, getNamedAccounts } from "hardhat"; import { BigNumber, Contract, VoidSigner } from "ethers"; -import { protocolFee, retailerFee, minDeposit } from "../temp/utils/constants"; +import { protocolFee, retailerFee, minDeposit } from "../utils"; import { structEqual, createSupplierId } from "./utils"; export interface Contracts {