Skip to content

Commit b9dcab1

Browse files
committed
fix: 🐛 Fixed invalid path to utils
1 parent 1e2c3ac commit b9dcab1

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

test/EntitiesRegistry.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { expect } from "chai";
22
import { BigNumber, constants } from "ethers";
3-
import { minDeposit, kinds } from "../temp/utils/constants";
3+
import { minDeposit, kinds } from "../utils";
44
import { randomId, createSupplierId, createPermitSignature } from "./utils";
55
import { User, setup, registerEntity } from "./setup";
66

test/Market.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import { expect } from "chai";
22
import { BigNumber, constants } from "ethers";
33
import { ethers } from "hardhat";
44
import { TransferEventObject } from "../typechain/contracts/Market";
5-
import { kinds } from "../temp/utils/constants";
5+
import { kinds } from "../utils";
66
import { Offer } from "../utils/types";
77
import {
88
structEqual,

test/setup.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import {
88
} from "../typechain";
99
import { ethers, deployments, getNamedAccounts } from "hardhat";
1010
import { BigNumber, Contract, VoidSigner } from "ethers";
11-
import { protocolFee, retailerFee, minDeposit } from "../temp/utils/constants";
11+
import { protocolFee, retailerFee, minDeposit } from "../utils";
1212
import { structEqual, createSupplierId } from "./utils";
1313

1414
export interface Contracts {

0 commit comments

Comments
 (0)