Skip to content

Commit 2ba4185

Browse files
committed
test: fix empty string check
1 parent f61ee67 commit 2ba4185

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/AaveV3Horizon_mGLOBALListing_20260616/AaveV3Horizon_mGLOBALListing_20260616.t.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ contract AaveV3Horizon_mGLOBALListing_20260616_Test is
9696
// the eMode category must be unused before execution (no collateral/borrowable assets, no label)
9797
assertEq(pool.getEModeCategoryCollateralBitmap(eModeCategory), 0, 'emode collateral not empty');
9898
assertEq(pool.getEModeCategoryBorrowableBitmap(eModeCategory), 0, 'emode borrowable not empty');
99-
assertEq(pool.getEModeCategoryLabel(eModeCategory), '', 'emode label not empty');
99+
assertEq(bytes(pool.getEModeCategoryLabel(eModeCategory)).length, 0, 'emode label not empty');
100100

101101
// execute payload
102102
_executeHorizonPayload(address(proposal));

0 commit comments

Comments
 (0)