fix: updated mocked debt contracts for upgradability tests

This commit is contained in:
Hadrien Charlanes 2021-07-06 11:54:13 +02:00
parent 5f352674de
commit 91709e82e2
2 changed files with 2 additions and 2 deletions

View File

@ -5,6 +5,6 @@ import {StableDebtToken} from '../../protocol/tokenization/StableDebtToken.sol';
contract MockStableDebtToken is StableDebtToken {
function getRevision() internal pure override returns (uint256) {
return 0x2;
return 0x3;
}
}

View File

@ -5,6 +5,6 @@ import {VariableDebtToken} from '../../protocol/tokenization/VariableDebtToken.s
contract MockVariableDebtToken is VariableDebtToken {
function getRevision() internal pure override returns (uint256) {
return 0x2;
return 0x3;
}
}