Skip to content

Commit 23ce129

Browse files
committed
trivial - update Counter.sol based on forge fmt
1 parent 66b6b76 commit 23ce129

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/Counter.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,4 @@ contract Counter {
1111
function increment() public {
1212
number++;
1313
}
14-
}
14+
}

test/Counter.t.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ contract CounterTest is Test {
1616
counter.increment();
1717
assertEq(counter.number(), 1);
1818
}
19-
19+
2020
function testFuzz_SetNumber(uint256 x) public {
2121
counter.setNumber(x);
2222
assertEq(counter.number(), x);

0 commit comments

Comments
 (0)