From ae8a3c0475cc018ee563c2dedeec6cab0ec69ac1 Mon Sep 17 00:00:00 2001 From: Josh Date: Fri, 4 Oct 2024 10:33:37 -0400 Subject: [PATCH] formatting CI is the bane of my existence --- .../ccip/test/tokenAdminRegistry/FactoryBurnMintERC20.t.sol | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/contracts/src/v0.8/ccip/test/tokenAdminRegistry/FactoryBurnMintERC20.t.sol b/contracts/src/v0.8/ccip/test/tokenAdminRegistry/FactoryBurnMintERC20.t.sol index f64e4985f0..49e309c0a4 100644 --- a/contracts/src/v0.8/ccip/test/tokenAdminRegistry/FactoryBurnMintERC20.t.sol +++ b/contracts/src/v0.8/ccip/test/tokenAdminRegistry/FactoryBurnMintERC20.t.sol @@ -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); - } } @@ -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);