Skip to content

Commit

Permalink
fix: adjust fixture for fork.
Browse files Browse the repository at this point in the history
  • Loading branch information
clement-ux committed Jan 27, 2025
1 parent e01c111 commit 7ce4436
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions contracts/test/_fixture.js
Original file line number Diff line number Diff line change
Expand Up @@ -650,9 +650,9 @@ const defaultFixture = deployments.createFixture(async () => {
? await ethers.getContract("OETHHarvesterSimple")
: undefined;

const oethFixedRateDripperProxy = await ethers.getContract(
"OETHFixedRateDripperProxy"
);
const oethFixedRateDripperProxy = !isFork
? undefined
: await ethers.getContract("OETHFixedRateDripperProxy");
const oethFixedRateDripper = !isFork
? undefined
: await ethers.getContractAt(
Expand Down

0 comments on commit 7ce4436

Please sign in to comment.