From 2ebb62097723c2bcb95b4a01c2eff336dae50a6f Mon Sep 17 00:00:00 2001 From: defi jesus <7946015+defijesus@users.noreply.github.com> Date: Mon, 19 Jun 2023 18:56:46 +0100 Subject: [PATCH] fix: error string not reflecting actual error (#112) Co-authored-by: defijesus.eth --- src/ProtocolV3TestBase.sol | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ProtocolV3TestBase.sol b/src/ProtocolV3TestBase.sol index 4d5ada7bc..31222ab96 100644 --- a/src/ProtocolV3TestBase.sol +++ b/src/ProtocolV3TestBase.sol @@ -801,7 +801,7 @@ contract ProtocolV3TestBase is CommonTestBase { ); require( strategy.getBaseStableBorrowRate() == expectedStrategyValues.baseStableBorrowRate, - '_validateInterestRateStrategy() : INVALID_BASE_VARIABLE_BORROW' + '_validateInterestRateStrategy() : INVALID_BASE_STABLE_BORROW' ); require( strategy.getStableRateSlope1() == expectedStrategyValues.stableRateSlope1,