mirror of
https://github.com/XRPLF/clio.git
synced 2026-07-29 10:00:25 +00:00
style: clang-tidy auto fixes (#1705)
Fixes #1704. Please review and commit clang-tidy fixes. Co-authored-by: kuznetsss <15742918+kuznetsss@users.noreply.github.com>
This commit is contained in:
committed by
Alex Kremer
parent
b8f1deb90f
commit
164387cab0
@@ -37,7 +37,7 @@ struct CoroutineGroupTests : SyncAsioContextTest {
|
||||
|
||||
TEST_F(CoroutineGroupTests, SpawnWait)
|
||||
{
|
||||
testing::Sequence sequence;
|
||||
testing::Sequence const sequence;
|
||||
EXPECT_CALL(callback1_, Call).InSequence(sequence);
|
||||
EXPECT_CALL(callback2_, Call).InSequence(sequence);
|
||||
EXPECT_CALL(callback3_, Call).InSequence(sequence);
|
||||
@@ -68,7 +68,7 @@ TEST_F(CoroutineGroupTests, SpawnWait)
|
||||
|
||||
TEST_F(CoroutineGroupTests, SpawnWaitSpawnWait)
|
||||
{
|
||||
testing::Sequence sequence;
|
||||
testing::Sequence const sequence;
|
||||
EXPECT_CALL(callback1_, Call).InSequence(sequence);
|
||||
EXPECT_CALL(callback2_, Call).InSequence(sequence);
|
||||
EXPECT_CALL(callback3_, Call).InSequence(sequence);
|
||||
@@ -102,7 +102,7 @@ TEST_F(CoroutineGroupTests, SpawnWaitSpawnWait)
|
||||
|
||||
TEST_F(CoroutineGroupTests, ChildCoroutinesFinishBeforeWait)
|
||||
{
|
||||
testing::Sequence sequence;
|
||||
testing::Sequence const sequence;
|
||||
EXPECT_CALL(callback2_, Call).InSequence(sequence);
|
||||
EXPECT_CALL(callback1_, Call).InSequence(sequence);
|
||||
EXPECT_CALL(callback3_, Call).InSequence(sequence);
|
||||
|
||||
Reference in New Issue
Block a user