diff --git a/test/Marketplace.test.js b/test/Marketplace.test.js index 6dd11a8..e736e91 100644 --- a/test/Marketplace.test.js +++ b/test/Marketplace.test.js @@ -41,7 +41,7 @@ const { } = require("./evm") const { getBytes } = require("ethers") const MarketplaceModule = require("../ignition/modules/marketplace") -const { assertDeploymentRejectedWithCustomError } = require("./util") +const { assertDeploymentRejectedWithCustomError } = require("./helpers") const ACCOUNT_STARTING_BALANCE = 1_000_000_000_000_000n diff --git a/test/Periods.test.js b/test/Periods.test.js index 1295140..c99e8af 100644 --- a/test/Periods.test.js +++ b/test/Periods.test.js @@ -1,6 +1,6 @@ const { expect } = require("chai") const PeriodsModule = require("../ignition/modules/periods") -const { assertDeploymentRejectedWithCustomError } = require("./util") +const { assertDeploymentRejectedWithCustomError } = require("./helpers") describe("Periods", function () { it("should revert when secondsPerPeriod is 0", async function () { diff --git a/test/util.js b/test/helpers.js similarity index 100% rename from test/util.js rename to test/helpers.js