Skip to content

Commit

Permalink
formatting CI is the bane of my existence
Browse files Browse the repository at this point in the history
  • Loading branch information
jhweintraub committed Oct 4, 2024
1 parent bf6d75d commit ae8a3c0
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,6 @@ contract FactoryBurnMintERC20constructor is BurnMintERC20Setup {
assertTrue(s_burnMintERC20.isBurner(s_alice));
assertEq(s_burnMintERC20.balanceOf(s_alice), 1e18);
assertEq(s_burnMintERC20.totalSupply(), 1e18);

}
}

Expand Down Expand Up @@ -127,7 +126,9 @@ contract FactoryBurnMintERC20mint is BurnMintERC20Setup {
// Mint max supply
s_burnMintERC20.mint(OWNER, s_burnMintERC20.maxSupply());

vm.expectRevert(abi.encodeWithSelector(FactoryBurnMintERC20.MaxSupplyExceeded.selector, s_burnMintERC20.maxSupply() + 1));
vm.expectRevert(
abi.encodeWithSelector(FactoryBurnMintERC20.MaxSupplyExceeded.selector, s_burnMintERC20.maxSupply() + 1)
);

// Attempt to mint 1 more than max supply
s_burnMintERC20.mint(OWNER, 1);
Expand Down

0 comments on commit ae8a3c0

Please sign in to comment.