Skip to content

Commit

Permalink
Merge pull request #196 from Gearbox-protocol/tests-pool-fix-3
Browse files Browse the repository at this point in the history
fix: increase added pool liqudity in attach tests
  • Loading branch information
Van0k authored Apr 9, 2024
2 parents b2628d7 + deb7c8d commit 3e29043
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 3e29043

Please sign in to comment.