Skip to content

Commit

Permalink
Remove console import
Browse files Browse the repository at this point in the history
  • Loading branch information
ninokeldishvili committed Nov 25, 2024
1 parent 9817a47 commit fd4a8a9
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ import {ZeroAssetsAmount, ZeroReceiver, ZeroOwner} from "src/abstract/ReceiptVau
import {IReceiptVaultV1} from "src/interface/IReceiptVaultV1.sol";
import {SFLR_CONTRACT} from "rain.flare/lib/sflr/LibSceptreStakedFlare.sol";
import {LibERC20PriceOracleReceiptVaultFork} from "../../../lib/LibERC20PriceOracleReceiptVaultFork.sol";
import "forge-std/console.sol";

contract ERC20PriceOracleReceiptVaultWithdrawTest is ERC20PriceOracleReceiptVaultTest {
using LibFixedPointDecimalArithmeticOpenZeppelin for uint256;
Expand Down Expand Up @@ -359,7 +358,7 @@ contract ERC20PriceOracleReceiptVaultWithdrawTest is ERC20PriceOracleReceiptVaul
vault.withdraw(maxWithdrawBob, bob, bob, alicePrice, bytes(""));

// Bob's balance should be only from his other deposit.
//assertEqUint(vault.balanceOf(bob), ((bobDeposit * bobPrice) / 1e18 )- bobPrice);
//assertEqUint(vault.balanceOf(bob), ((bobDeposit * bobPrice) / 1e18 ) - bobPrice);

// Bob cannot withdraw any more under alice price.
vm.expectRevert("ERC1155: burn amount exceeds balance");
Expand Down

0 comments on commit fd4a8a9

Please sign in to comment.