Skip to content

Commit

Permalink
test(config): fix uninitialized variable
Browse files Browse the repository at this point in the history
  • Loading branch information
Rubilmax committed Feb 8, 2023
1 parent d79fb2b commit dee8a8a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/helpers/IntegrationTest.sol
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ contract IntegrationTest is ForkTest {

market.isBorrowable = reserve.configuration.getBorrowingEnabled() && !reserve.configuration.getSiloedBorrowing()
&& !reserve.configuration.getBorrowableInIsolation()
&& (E_MODE_CATEGORY_ID == 0 || E_MODE_CATEGORY_ID == config.getEModeCategory());
&& (E_MODE_CATEGORY_ID == 0 || E_MODE_CATEGORY_ID == reserve.configuration.getEModeCategory());

vm.label(reserve.aTokenAddress, string.concat("a", market.symbol));
vm.label(reserve.variableDebtTokenAddress, string.concat("vd", market.symbol));
Expand Down

0 comments on commit dee8a8a

Please sign in to comment.