mirror of
https://github.com/XRPLF/clio.git
synced 2025-11-11 15:25:52 +00:00
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:
committed by
GitHub
parent
491cd58f93
commit
f577139f70
@@ -53,7 +53,7 @@ protected:
|
|||||||
TEST_F(MonitorTests, ConsumesAndNotifiesForAllOutstandingSequencesAtOnce)
|
TEST_F(MonitorTests, ConsumesAndNotifiesForAllOutstandingSequencesAtOnce)
|
||||||
{
|
{
|
||||||
uint8_t count = 3;
|
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);
|
std::binary_semaphore unblock(0);
|
||||||
|
|
||||||
@@ -94,7 +94,7 @@ TEST_F(MonitorTests, NotifiesForEachSequence)
|
|||||||
|
|
||||||
TEST_F(MonitorTests, NotifiesWhenForcedByNewSequenceAvailableFromNetwork)
|
TEST_F(MonitorTests, NotifiesWhenForcedByNewSequenceAvailableFromNetwork)
|
||||||
{
|
{
|
||||||
LedgerRange range(kSTART_SEQ, kSTART_SEQ);
|
LedgerRange const range(kSTART_SEQ, kSTART_SEQ);
|
||||||
std::binary_semaphore unblock(0);
|
std::binary_semaphore unblock(0);
|
||||||
std::function<void(uint32_t)> pusher;
|
std::function<void(uint32_t)> pusher;
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user