Skip to content

Commit

Permalink
refactor: formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
scottphc committed Jan 23, 2025
1 parent 4c1a5ee commit 60d07d0
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions test/SpotlightTokenTest.t.sol
Original file line number Diff line number Diff line change
Expand Up @@ -223,10 +223,8 @@ contract SpotlightTokenTest is Test {
uint256 USER_BUY_AMOUNT = 1 ether;
uint256 protocolTradingFee = _calculateFee(USER_BUY_AMOUNT, TOTAL_FEE_BPS);
uint256 ipAccountReward = _calculateFee(protocolTradingFee, IP_ACCOUNT_FEE_BPS);
uint256 expectedProtocolRewardsBalance =
address(_rewardsVault).balance + ipAccountReward;
uint256 expectedFactoryBalance =
address(_factory).balance + (protocolTradingFee - ipAccountReward);
uint256 expectedProtocolRewardsBalance = address(_rewardsVault).balance + ipAccountReward;
uint256 expectedFactoryBalance = address(_factory).balance + (protocolTradingFee - ipAccountReward);

vm.deal(_buyer, USER_BUY_AMOUNT);
vm.startPrank(_buyer);
Expand Down

0 comments on commit 60d07d0

Please sign in to comment.