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 {