Skip to content

Commit

Permalink
chore: activate mkr payments test & improve rwa test
Browse files Browse the repository at this point in the history
  • Loading branch information
SidestreamStrongStrawberry committed Aug 8, 2024
1 parent 2b283b7 commit a08b3ef
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/DssSpell.t.sol
Original file line number Diff line number Diff line change
Expand Up @@ -637,7 +637,7 @@ contract DssSpellTest is DssSpellTestBase {
}
}

function testMKRPayments() public skipped { // add the `skipped` modifier to skip
function testMKRPayments() public { // add the `skipped` modifier to skip
// For each payment, create a Payee object with
// the Payee address,
// the amount to be paid
Expand Down Expand Up @@ -959,6 +959,7 @@ contract DssSpellTest is DssSpellTestBase {
(, uint256 afterArt) = vat.urns("RWA001-A", urn);
assertEq(afterArt, 0, "RWA001: Bad art value after wipe()");

assertEq(rwa001.balanceOf(address(this)), 0, "RWA001: Unexpected balance before free()");
RwaUrnLike(urn).free(WAD);
assertEq(rwa001.balanceOf(address(this)), WAD, "RWA001: Bad conduit balance after free()");
}
Expand Down

0 comments on commit a08b3ef

Please sign in to comment.