mirror of
https://github.com/XRPLF/rippled.git
synced 2026-07-27 17:10:46 +00:00
style: More clang-tidy identifier renaming (#7290)
This commit is contained in:
@@ -1062,7 +1062,7 @@ struct LedgerReplayer_test : public beast::unit_test::Suite
|
||||
testcase("config test");
|
||||
{
|
||||
Config const c;
|
||||
BEAST_EXPECT(c.LEDGER_REPLAY == false);
|
||||
BEAST_EXPECT(c.ledgerReplay == false);
|
||||
}
|
||||
|
||||
{
|
||||
@@ -1072,7 +1072,7 @@ struct LedgerReplayer_test : public beast::unit_test::Suite
|
||||
1
|
||||
)xrpldConfig");
|
||||
c.loadFromString(toLoad);
|
||||
BEAST_EXPECT(c.LEDGER_REPLAY == true);
|
||||
BEAST_EXPECT(c.ledgerReplay == true);
|
||||
}
|
||||
|
||||
{
|
||||
@@ -1082,7 +1082,7 @@ struct LedgerReplayer_test : public beast::unit_test::Suite
|
||||
0
|
||||
)xrpldConfig");
|
||||
c.loadFromString(toLoad);
|
||||
BEAST_EXPECT(c.LEDGER_REPLAY == false);
|
||||
BEAST_EXPECT(c.ledgerReplay == false);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1101,7 +1101,7 @@ struct LedgerReplayer_test : public beast::unit_test::Suite
|
||||
|
||||
beast::IP::Address const addr = boost::asio::ip::make_address("172.1.1.100");
|
||||
jtx::Env serverEnv(*this);
|
||||
serverEnv.app().config().LEDGER_REPLAY = server;
|
||||
serverEnv.app().config().ledgerReplay = server;
|
||||
auto httpResp = xrpl::makeResponse(
|
||||
true, httpRequest, addr, addr, uint256{1}, 1, {1, 0}, serverEnv.app());
|
||||
auto const clientResult = peerFeatureEnabled(httpResp, kFeatureLedgerReplay, client);
|
||||
|
||||
Reference in New Issue
Block a user