mirror of
https://github.com/XRPLF/rippled.git
synced 2026-06-02 16:26:48 +00:00
fix: Rename loanBroker helpers in PR #7039 tests to current naming
The two new tests added by PR #7039 (testBugOverpayUnroundedAmount, testOverpaymentPreFixBranch) used the pre-rename loanBroker helpers kMANAGEMENT_FEE_RATE / kDEBT_MAXIMUM. The wider clang-tidy cleanup on develop renamed these to kManagementFeeRate / kDebtMaximum before the PR was rebased.
This commit is contained in:
@@ -7800,8 +7800,8 @@ protected:
|
||||
{
|
||||
using namespace loanBroker;
|
||||
env(set(vaultOwner, vaultKeylet.key),
|
||||
kMANAGEMENT_FEE_RATE(TenthBips16{1000}),
|
||||
kDEBT_MAXIMUM(Number{5000}),
|
||||
kManagementFeeRate(TenthBips16{1000}),
|
||||
kDebtMaximum(Number{5000}),
|
||||
Fee(env.current()->fees().base * 2));
|
||||
}
|
||||
env.close();
|
||||
@@ -7880,8 +7880,8 @@ protected:
|
||||
{
|
||||
using namespace loanBroker;
|
||||
env(set(vaultOwner, vaultKeylet.key),
|
||||
kMANAGEMENT_FEE_RATE(TenthBips16{1000}),
|
||||
kDEBT_MAXIMUM(Number{5000}),
|
||||
kManagementFeeRate(TenthBips16{1000}),
|
||||
kDebtMaximum(Number{5000}),
|
||||
Fee(env.current()->fees().base * 2));
|
||||
}
|
||||
env.close();
|
||||
|
||||
Reference in New Issue
Block a user