Skip to content

Commit

Permalink
forge fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
davidlaprade committed Nov 6, 2024
1 parent 5439848 commit d6079db
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion test/FractionalPool.t.sol
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ contract FractionalPoolTest is Test {
}

contract Deployment is FractionalPoolTest {
function test_FractionalPoolDeployment() view public {
function test_FractionalPoolDeployment() public view {
assertEq(token.name(), "Governance Token");
assertEq(token.symbol(), "GOV");

Expand Down
2 changes: 1 addition & 1 deletion test/GovernorCountingFractional.t.sol
Original file line number Diff line number Diff line change
Expand Up @@ -350,7 +350,7 @@ contract GovernorCountingFractionalTest is Test {
/// END HELPER FUNCTIONS
/// --------------------

function testFuzz_Deployment(uint256 _blockNumber) view public {
function testFuzz_Deployment(uint256 _blockNumber) public view {
assertEq(governor.name(), "Governor");
assertEq(address(governor.token()), address(token));
assertEq(governor.votingDelay(), 4);
Expand Down

0 comments on commit d6079db

Please sign in to comment.