Skip to content

Commit

Permalink
enable testNewAuthorizations
Browse files Browse the repository at this point in the history
  • Loading branch information
SidestreamColdMelon committed Jan 21, 2025
1 parent cbdea09 commit 17d183d
Showing 1 changed file with 3 additions and 11 deletions.
14 changes: 3 additions & 11 deletions src/DssSpell.t.sol
Original file line number Diff line number Diff line change
Expand Up @@ -416,17 +416,9 @@ contract DssSpellTest is DssSpellTestBase {
bytes32 ward;
}

function testNewAuthorizations() public skipped { // add the `skipped` modifier to skip
Authorization[9] memory newAuthorizations = [
Authorization({ base: "MCD_VAT", ward: "LOCKSTAKE_ENGINE" }),
Authorization({ base: "MCD_VAT", ward: "LOCKSTAKE_CLIP" }),
Authorization({ base: "PIP_MKR", ward: "OSM_MOM" }),
Authorization({ base: "MCD_DOG", ward: "LOCKSTAKE_CLIP" }),
Authorization({ base: "LOCKSTAKE_MKR", ward: "LOCKSTAKE_ENGINE" }),
Authorization({ base: "LOCKSTAKE_ENGINE", ward: "LOCKSTAKE_CLIP" }),
Authorization({ base: "LOCKSTAKE_CLIP", ward: "MCD_DOG" }),
Authorization({ base: "LOCKSTAKE_CLIP", ward: "MCD_END" }),
Authorization({ base: "LOCKSTAKE_CLIP", ward: "CLIPPER_MOM" })
function testNewAuthorizations() public { // add the `skipped` modifier to skip
Authorization[1] memory newAuthorizations = [
Authorization({ base: "MCD_VAT", ward: "MCD_VEST_USDS" })
];

for (uint256 i = 0; i < newAuthorizations.length; i++) {
Expand Down

0 comments on commit 17d183d

Please sign in to comment.