Skip to content

Commit 7d6b99f

Browse files
fix include ordering
1 parent 0f3cde3 commit 7d6b99f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/app/tests/TestReadInteraction.cpp

+3-3
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,9 @@
2323
*/
2424

2525
// TODO(#32628): Remove the CHIPCore.h header when the esp32 build is correctly fixed (next two includes)
26-
#include <app/reporting/ReportScheduler.h>
2726
#include <lib/core/CHIPCore.h>
27+
// add a line to avoid the reorder
28+
#include <app/reporting/ReportScheduler.h>
2829

2930
#include "lib/support/CHIPMem.h"
3031
#include <access/examples/PermissiveAccessControlDelegate.h>
@@ -1373,8 +1374,7 @@ void TestReadInteraction::TestSetDirtyBetweenChunks(nlTestSuite * apSuite, void
13731374
public:
13741375
DirtyingMockDelegate(AttributePathParams (&aReadPaths)[2], int & aNumAttributeResponsesWhenSetDirty,
13751376
int & aNumArrayItemsWhenSetDirty) :
1376-
mReadPaths(aReadPaths),
1377-
mNumAttributeResponsesWhenSetDirty(aNumAttributeResponsesWhenSetDirty),
1377+
mReadPaths(aReadPaths), mNumAttributeResponsesWhenSetDirty(aNumAttributeResponsesWhenSetDirty),
13781378
mNumArrayItemsWhenSetDirty(aNumArrayItemsWhenSetDirty)
13791379
{}
13801380

0 commit comments

Comments
 (0)