Skip to content

Commit

Permalink
formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
dglowinski committed Mar 24, 2024
1 parent d2aede1 commit a2f23b9
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions test/unit/productLines/productLines.base.t.sol
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ contract ProductLine_Base is EVaultTestBase {
assertEq(coreProductLine.vaultLookup(address(eTST)), true);
assertEq(coreProductLine.vaultLookup(vm.addr(100)), false);
assertEq(coreProductLine.getVaultListLength(), 2);
assertEq(coreProductLine.getVaultListSlice(0, type(uint).max)[0], address(eTST));
assertEq(coreProductLine.getVaultListSlice(0, type(uint).max)[1], address(eTST2));
assertEq(coreProductLine.getVaultListSlice(0, type(uint256).max)[0], address(eTST));
assertEq(coreProductLine.getVaultListSlice(0, type(uint256).max)[1], address(eTST2));
}
}
4 changes: 2 additions & 2 deletions test/unit/productLines/productLines.escrow.t.sol
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ import "src/ProductLines/Escrow.sol";
import "../evault/EVaultTestBase.t.sol";

contract ProductLine_Escrow is EVaultTestBase {
uint32 constant ESCROW_DISABLED_OPS = OP_BORROW | OP_REPAY | OP_LOOP | OP_DELOOP | OP_PULL_DEBT | OP_CONVERT_FEES | OP_LIQUIDATE | OP_TOUCH
| OP_ACCRUE_INTEREST;
uint32 constant ESCROW_DISABLED_OPS = OP_BORROW | OP_REPAY | OP_LOOP | OP_DELOOP | OP_PULL_DEBT | OP_CONVERT_FEES
| OP_LIQUIDATE | OP_TOUCH | OP_ACCRUE_INTEREST;

function test_ProductLine_Escrow_basicViews() public {
IEVault escrowTST = IEVault(escrowProductLine.createVault(address(assetTST)));
Expand Down

0 comments on commit a2f23b9

Please sign in to comment.