Skip to content

Commit

Permalink
get tests running
Browse files Browse the repository at this point in the history
  • Loading branch information
julianmrodri committed Nov 27, 2024
1 parent 54dfcd4 commit 590e2df
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import {
MockV3Aggregator,
MockV3Aggregator__factory,
TestICollateral,
IWSuperOETHb,
IERC4626,
} from '../../../../typechain'
import { pushOracleForward } from '../../../utils/oracles'
import { bn, fp } from '../../../../common/numbers'
Expand All @@ -34,7 +34,7 @@ import { getResetFork } from '../helpers'
Define interfaces
*/
interface WSUPEROETHBCollateralFixtureContext extends CollateralFixtureContext {
wsuperoethb: IWSuperOETHb
wsuperoethb: IERC4626
targetPerRefChainlinkFeed: MockV3Aggregator
uoaPerTargetChainlinkFeed: MockV3Aggregator
}
Expand Down Expand Up @@ -138,9 +138,9 @@ const makeCollateralFixtureContext = (
collateralOpts.uoaPerTargetChainlinkFeed = uoaPerTargetChainlinkFeed.address

const wsuperOETHb = (await ethers.getContractAt(
'IWSuperOETHb',
'@openzeppelin/contracts/interfaces/IERC4626.sol:IERC4626',
BASE_WSUPEROETHB
)) as IWSuperOETHb
)) as IERC4626
const rewardToken = (await ethers.getContractAt('ERC20Mock', ZERO_ADDRESS)) as ERC20Mock
const collateral = await deployCollateral(collateralOpts)

Expand Down

0 comments on commit 590e2df

Please sign in to comment.