style: clang-tidy auto fixes (#1920)

Fixes #1919. Please review and commit clang-tidy fixes.

Co-authored-by: godexsoft <385326+godexsoft@users.noreply.github.com>
This commit is contained in:
github-actions[bot]
2025-02-24 09:35:25 +00:00
committed by GitHub
parent 491cd58f93
commit f577139f70

View File

@@ -53,7 +53,7 @@ protected:
TEST_F(MonitorTests, ConsumesAndNotifiesForAllOutstandingSequencesAtOnce)
{
uint8_t count = 3;
LedgerRange range(kSTART_SEQ, kSTART_SEQ + count - 1);
LedgerRange const range(kSTART_SEQ, kSTART_SEQ + count - 1);
std::binary_semaphore unblock(0);
@@ -94,7 +94,7 @@ TEST_F(MonitorTests, NotifiesForEachSequence)
TEST_F(MonitorTests, NotifiesWhenForcedByNewSequenceAvailableFromNetwork)
{
LedgerRange range(kSTART_SEQ, kSTART_SEQ);
LedgerRange const range(kSTART_SEQ, kSTART_SEQ);
std::binary_semaphore unblock(0);
std::function<void(uint32_t)> pusher;