Skip to content

Commit

Permalink
test: rm unused variable
Browse files Browse the repository at this point in the history
  • Loading branch information
xenide committed Jan 29, 2025

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
1 parent c5afbbb commit a7e0bb1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/unit/libraries/StableOracleMath.t.sol
Original file line number Diff line number Diff line change
@@ -90,6 +90,6 @@ contract StableOracleMathTest is Test {
uint256 lReserve1 = bound(aReserve1, 1, 1e12);

// act - this should never revert for all non-zero values of reserve0 and reserve1
(uint256 lSpotPrice, ) = StableOracleMath.calcLogPrice(100000, lReserve0, lReserve1);
StableOracleMath.calcLogPrice(100000, lReserve0, lReserve1);
}
}

0 comments on commit a7e0bb1

Please sign in to comment.