Skip to content

Commit 3e9691c

Browse files
committed
fix: helper clean up
1 parent 4b113f7 commit 3e9691c

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

tests/utils/HorizonConfigAssertionHelper.sol

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -87,10 +87,10 @@ abstract contract HorizonConfigAssertionHelper is Test {
8787
function _assertRwaConfig(IPool pool, address underlying) internal {
8888
_assertRwaOracleRegistry(underlying);
8989
_assertRwaATokenApproveReverts(pool, underlying);
90-
_assertRwaReserveConfigurationSanity(pool, underlying);
90+
_assertRwaReserveConfigurationSanityCheck(pool, underlying);
9191
}
9292

93-
function _assertRwaReserveConfigurationSanity(IPool pool, address underlying) internal view {
93+
function _assertRwaReserveConfigurationSanityCheck(IPool pool, address underlying) internal view {
9494
DataTypes.ReserveConfigurationMap memory config = pool.getConfiguration(underlying);
9595
assertEq(config.getBorrowingEnabled(), false, 'borrowingEnabled');
9696
assertEq(config.getFlashLoanEnabled(), false, 'flashloanable');

0 commit comments

Comments
 (0)