Skip to content

Commit 4232035

Browse files
fix unit test #ifdef to #if
1 parent 3e65d28 commit 4232035

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/app/icd/server/ICDManager.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ class ICDManager : public ICDListener
140140
void TriggerCheckInMessages(const std::function<RegistrationVerificationFunction> & verifier);
141141
#endif // CHIP_CONFIG_ENABLE_ICD_CIP
142142

143-
#ifdef CONFIG_BUILD_FOR_HOST_UNIT_TEST
143+
#if CONFIG_BUILD_FOR_HOST_UNIT_TEST
144144
void SetTestFeatureMapValue(uint32_t featureMap) { mFeatureMap = featureMap; };
145145
#endif
146146

src/app/reporting/ReportScheduler.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -213,7 +213,7 @@ class ReportScheduler : public ReadHandler::Observer, public ICDStateObserver
213213
/// @brief Get the number of ReadHandlers registered in the scheduler's node pool
214214
size_t GetNumReadHandlers() const { return mNodesPool.Allocated(); }
215215

216-
#ifdef CONFIG_BUILD_FOR_HOST_UNIT_TEST
216+
#if CONFIG_BUILD_FOR_HOST_UNIT_TEST
217217
Timestamp GetMinTimestampForHandler(const ReadHandler * aReadHandler)
218218
{
219219
ReadHandlerNode * node = FindReadHandlerNode(aReadHandler);

0 commit comments

Comments
 (0)