Skip to content

Commit

Permalink
fix: fuzz test
Browse files Browse the repository at this point in the history
  • Loading branch information
brotherlymite committed Apr 26, 2024
1 parent ac1aea8 commit 2b82032
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/core/PoolConfigurator.reserveRiskConfig.t.sol
Original file line number Diff line number Diff line change
Expand Up @@ -735,7 +735,7 @@ contract PoolConfiguratorReserveRiskConfigs is TestnetProcedures {

function test_setLiquidationGracePeriodReserve(uint40 gracePeriod) public {
vm.assume(
gracePeriod <= contracts.poolConfiguratorProxy.MAX_GRACE_PERIOD() && gracePeriod != 0
gracePeriod < contracts.poolConfiguratorProxy.MAX_GRACE_PERIOD() && gracePeriod != 0
);

address asset = tokenList.usdx;
Expand Down

0 comments on commit 2b82032

Please sign in to comment.