Skip to content

Commit

Permalink
fix: linting
Browse files Browse the repository at this point in the history
  • Loading branch information
sakulstra committed Sep 23, 2024
1 parent 67c7e8a commit 915165c
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions tests/utils/ProtocolV3TestBase.sol
Original file line number Diff line number Diff line change
Expand Up @@ -166,8 +166,16 @@ contract ProtocolV3TestBase is DiffUtils {
vm.serializeUint(key, 'eModeCategory', i);
vm.serializeString(key, 'label', pool.getEModeCategoryLabel(i));
vm.serializeUint(key, 'ltv', cfg.ltv);
vm.serializeString(key, 'collateralBitmap', vm.toString(pool.getEModeCategoryCollateralBitmap(i)));
vm.serializeString(key, 'borrowableBitmap', vm.toString(pool.getEModeCategoryBorrowableBitmap(i)));
vm.serializeString(
key,
'collateralBitmap',
vm.toString(pool.getEModeCategoryCollateralBitmap(i))
);
vm.serializeString(
key,
'borrowableBitmap',
vm.toString(pool.getEModeCategoryBorrowableBitmap(i))
);
vm.serializeUint(key, 'liquidationThreshold', cfg.liquidationThreshold);
string memory object = vm.serializeUint(key, 'liquidationBonus', cfg.liquidationBonus);
content = vm.serializeString(eModesKey, key, object);
Expand Down

0 comments on commit 915165c

Please sign in to comment.