Skip to content

Commit

Permalink
fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
valiafetisov committed Oct 21, 2022
1 parent de8e0b4 commit 78b4b7c
Show file tree
Hide file tree
Showing 2 changed files with 205 additions and 209 deletions.
4 changes: 1 addition & 3 deletions core/simulations/helpers/createVaultWithCollateral.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,7 @@ const UNSUPPORTED_COLLATERAL_TYPES = [
];

export const getLiquidatableCollateralTypes = () => {
return Object.keys(getAllCollateralTypes()).filter(
collateralType => !UNSUPPORTED_COLLATERAL_TYPES.includes(collateralType)
);
return getAllCollateralTypes().filter(collateralType => !UNSUPPORTED_COLLATERAL_TYPES.includes(collateralType));
};

const setAndCheckCollateralInVat = async (collateralType: CollateralType, collateralOwned: BigNumber) => {
Expand Down
Loading

0 comments on commit 78b4b7c

Please sign in to comment.