Skip to content

Commit

Permalink
fix: increase added pool liqudity in attach tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Van0k committed Apr 8, 2024
1 parent b2628d7 commit deb7c8d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions contracts/test/helpers/IntegrationTestHelper.sol
Original file line number Diff line number Diff line change
Expand Up @@ -336,8 +336,8 @@ contract IntegrationTestHelper is TestHelper, BalanceHelper, ConfigManager {

uint256 remainingBorrowable = pool.creditManagerBorrowable(address(creditManager));

if (remainingBorrowable < minDebt) {
uint256 depositAmount = 5 * minDebt;
if (remainingBorrowable < 10 * minDebt) {
uint256 depositAmount = 10 * minDebt;
{
if (pool.expectedLiquidity() != 0) {
uint256 utilization =
Expand Down

0 comments on commit deb7c8d

Please sign in to comment.