Skip to content

Commit 0ae4488

Browse files
restyled-commitsmbknust
authored andcommitted
Restyled by clang-format
1 parent b90dd55 commit 0ae4488

File tree

3 files changed

+6
-5
lines changed

3 files changed

+6
-5
lines changed

src/app/tests/TestReadInteraction.cpp

+2-1
Original file line numberDiff line numberDiff line change
@@ -1369,7 +1369,8 @@ void TestReadInteraction::TestSetDirtyBetweenChunks(nlTestSuite * apSuite, void
13691369
public:
13701370
DirtyingMockDelegate(AttributePathParams (&aReadPaths)[2], int & aNumAttributeResponsesWhenSetDirty,
13711371
int & aNumArrayItemsWhenSetDirty) :
1372-
mReadPaths(aReadPaths), mNumAttributeResponsesWhenSetDirty(aNumAttributeResponsesWhenSetDirty),
1372+
mReadPaths(aReadPaths),
1373+
mNumAttributeResponsesWhenSetDirty(aNumAttributeResponsesWhenSetDirty),
13731374
mNumArrayItemsWhenSetDirty(aNumArrayItemsWhenSetDirty)
13741375
{}
13751376

src/controller/tests/data_model/TestRead.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -4971,8 +4971,8 @@ void TestReadInteraction::TestReadHandler_KeepSubscriptionTest(nlTestSuite * apS
49714971

49724972
readParam.mAttributePathParamsListSize = 0;
49734973
readClient = std::make_unique<app::ReadClient>(app::InteractionModelEngine::GetInstance(),
4974-
app::InteractionModelEngine::GetInstance()->GetExchangeManager(), readCallback,
4975-
app::ReadClient::InteractionType::Subscribe);
4974+
app::InteractionModelEngine::GetInstance()->GetExchangeManager(), readCallback,
4975+
app::ReadClient::InteractionType::Subscribe);
49764976
NL_TEST_ASSERT(apSuite, readClient->SendRequest(readParam) == CHIP_NO_ERROR);
49774977

49784978
ctx.DrainAndServiceIO();

src/protocols/secure_channel/tests/TestCASESession.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -913,8 +913,8 @@ struct SessionResumptionTestStorage : SessionResumptionStorage
913913
{
914914
SessionResumptionTestStorage(CHIP_ERROR findMethodReturnCode, ScopedNodeId peerNodeId, ResumptionIdStorage * resumptionId,
915915
Crypto::P256ECDHDerivedSecret * sharedSecret) :
916-
mFindMethodReturnCode(findMethodReturnCode), mPeerNodeId(peerNodeId), mResumptionId(resumptionId),
917-
mSharedSecret(sharedSecret)
916+
mFindMethodReturnCode(findMethodReturnCode),
917+
mPeerNodeId(peerNodeId), mResumptionId(resumptionId), mSharedSecret(sharedSecret)
918918
{}
919919
SessionResumptionTestStorage(CHIP_ERROR findMethodReturnCode) : mFindMethodReturnCode(findMethodReturnCode) {}
920920
CHIP_ERROR FindByScopedNodeId(const ScopedNodeId & node, ResumptionIdStorage & resumptionId,

0 commit comments

Comments
 (0)