Skip to content

Commit

Permalink
removed test for zero amount
Browse files Browse the repository at this point in the history
  • Loading branch information
soloseng committed Sep 16, 2024
1 parent 729008f commit 20f8ae4
Showing 1 changed file with 0 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3441,12 +3441,6 @@ contract ValidatorsTest_MintStableToEpochManager is ValidatorsTest {
vm.expectRevert("only registered contract");
validators.mintStableToEpochManager(5);
}
function test_Reverts_WhenMintAmountIsZero() public {
_whenL2();
vm.expectRevert("mint amount is zero.");
vm.prank(address(epochManager));
validators.mintStableToEpochManager(0);
}

function test_ShouldMintStableToEpochManager() public {
_whenL2();
Expand Down

0 comments on commit 20f8ae4

Please sign in to comment.