Skip to content

Commit

Permalink
fmt: Fix formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
pmerkleplant committed Jun 25, 2024
1 parent 92d9839 commit 7b9a1ea
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion test/Aggor.t.sol
Original file line number Diff line number Diff line change
Expand Up @@ -845,7 +845,8 @@ contract AggorTest is Test {
uint val;
uint age;
IAggor.Status memory status;
(val, age, status) = aggor.readWithStatus{gas: gasUsage_readWithStatus}();
(val, age, status) =
aggor.readWithStatus{gas: gasUsage_readWithStatus}();
assertEq(val, wantVal);
assertEq(age, wantAge);
assertEq(status.path, wantStatus.path);
Expand Down

0 comments on commit 7b9a1ea

Please sign in to comment.