Skip to content

Commit

Permalink
fix include ordering
Browse files Browse the repository at this point in the history
  • Loading branch information
mkardous-silabs committed Mar 19, 2024
1 parent 0f3cde3 commit 7d6b99f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/app/tests/TestReadInteraction.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,9 @@
*/

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

#include "lib/support/CHIPMem.h"
#include <access/examples/PermissiveAccessControlDelegate.h>
Expand Down Expand Up @@ -1373,8 +1374,7 @@ void TestReadInteraction::TestSetDirtyBetweenChunks(nlTestSuite * apSuite, void
public:
DirtyingMockDelegate(AttributePathParams (&aReadPaths)[2], int & aNumAttributeResponsesWhenSetDirty,
int & aNumArrayItemsWhenSetDirty) :
mReadPaths(aReadPaths),
mNumAttributeResponsesWhenSetDirty(aNumAttributeResponsesWhenSetDirty),
mReadPaths(aReadPaths), mNumAttributeResponsesWhenSetDirty(aNumAttributeResponsesWhenSetDirty),
mNumArrayItemsWhenSetDirty(aNumArrayItemsWhenSetDirty)
{}

Expand Down

0 comments on commit 7d6b99f

Please sign in to comment.