Skip to content

Commit

Permalink
test: rm gas bounty tests
Browse files Browse the repository at this point in the history
  • Loading branch information
xenide committed Jul 8, 2024
1 parent 5359ac8 commit 08b30ee
Showing 1 changed file with 0 additions and 19 deletions.
19 changes: 0 additions & 19 deletions test/unit/ReservoirPriceOracle.t.sol
Original file line number Diff line number Diff line change
Expand Up @@ -101,25 +101,6 @@ contract ReservoirPriceOracleTest is BaseTest {
assertEq(lQueriedPrice, lPrice);
}

function testGasBountyAvailable(uint256 aBountyAmount) external {
// assume
uint256 lBounty = bound(aBountyAmount, 1, type(uint256).max);

// arrange
deal(address(_oracle), lBounty);

// act & assert
assertEq(_oracle.gasBountyAvailable(), lBounty);
}

function testGasBountyAvailable_Zero() external view {
// sanity
assertEq(address(_oracle).balance, 0);

// act & assert
assertEq(_oracle.gasBountyAvailable(), 0);
}

function testGetQuote(uint256 aPrice, uint256 aAmountIn) public {
// assume
uint256 lPrice = bound(aPrice, 1, 1e36);
Expand Down

0 comments on commit 08b30ee

Please sign in to comment.