From 2b820322d4c4045fcea7580a05d7c7705e4fa480 Mon Sep 17 00:00:00 2001 From: Harsh Pandey Date: Fri, 26 Apr 2024 12:12:33 +0530 Subject: [PATCH] fix: fuzz test --- tests/core/PoolConfigurator.reserveRiskConfig.t.sol | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/core/PoolConfigurator.reserveRiskConfig.t.sol b/tests/core/PoolConfigurator.reserveRiskConfig.t.sol index cd6a28b7..ddc81a46 100644 --- a/tests/core/PoolConfigurator.reserveRiskConfig.t.sol +++ b/tests/core/PoolConfigurator.reserveRiskConfig.t.sol @@ -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;