Skip to content

Commit 0ec7110

Browse files
committed
fix clang tidy error
1 parent 6f81382 commit 0ec7110

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/app/tests/TestThreadBorderRouterManagementCluster.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ class TestDelegate : public Delegate
9595
dataset.Init(ByteSpan(mActiveDataset, mActiveDatasetLen));
9696
return CHIP_NO_ERROR;
9797
}
98-
else if (type == DatasetType::kPending && mPendingDatasetLen)
98+
if (type == DatasetType::kPending && mPendingDatasetLen)
9999
{
100100
dataset.Init(ByteSpan(mPendingDataset, mPendingDatasetLen));
101101
return CHIP_NO_ERROR;

0 commit comments

Comments
 (0)