Skip to content

Commit

Permalink
Make the linter happy
Browse files Browse the repository at this point in the history
  • Loading branch information
ksperling-apple committed Jul 2, 2024
1 parent 0d9cbc2 commit 4d8ea7f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/controller/tests/data_model/TestRead.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3160,7 +3160,8 @@ TEST_F(TestRead, TestReadHandler_DataVersionFiltersTruncated)
EXPECT_GE(loopbackDelegate.requestSize, lastRequestSize);
if (loopbackDelegate.requestSize == lastRequestSize)
{
ChipLogProgress(DataManagement, "Data Version truncation detected after %zu elements", count - 1);
ChipLogProgress(DataManagement, "Data Version truncation detected after %llu elements",
static_cast<unsigned long long>(count - 1));
// With the parameters used in this test and current encoding rules we can fit 68 data versions
// into a packet. If we're seeing substantially less then something is likely gone wrong.
EXPECT_GE(count, 60u);
Expand Down

0 comments on commit 4d8ea7f

Please sign in to comment.