From 3c0fdab2cd086647d7b6bfa393fce0119a5b1311 Mon Sep 17 00:00:00 2001 From: ATmobica Date: Thu, 22 Sep 2022 13:07:51 +0000 Subject: [PATCH] [Fix] Fix controller unit tests Change TestReadChunkingTests to TestEventChunkingTests in TestEventChunkingTests.cpp Signed-off-by: ATmobica --- src/controller/tests/TestEventChunking.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/controller/tests/TestEventChunking.cpp b/src/controller/tests/TestEventChunking.cpp index 6764bb95e307c3..d0132301360844 100644 --- a/src/controller/tests/TestEventChunking.cpp +++ b/src/controller/tests/TestEventChunking.cpp @@ -542,10 +542,10 @@ nlTestSuite sSuite = } // namespace -int TestReadChunkingTests() +int TestEventChunkingTests() { gSuite = &sSuite; return chip::ExecuteTestsWithContext(&sSuite); } -CHIP_REGISTER_TEST_SUITE(TestReadChunkingTests) +CHIP_REGISTER_TEST_SUITE(TestEventChunkingTests)