From a7362c1a45950fd6bda8ba2d4a3b0386f4a1b076 Mon Sep 17 00:00:00 2001 From: Jonathan Hui Date: Tue, 3 Feb 2026 11:09:55 -0800 Subject: [PATCH] [tests] fix build error in nexus_discover_scan test (#12360) This commit updates `tests/nexus/test_discover_scan.cpp` to use `MeshCoP::NetworkIdentity` instead of `MeshCoP::ExtendedPanIdManager`. The latter was renamed in the core codebase, leading to a build failure in the nexus discovery scan test. --- tests/nexus/test_discover_scan.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/nexus/test_discover_scan.cpp b/tests/nexus/test_discover_scan.cpp index f947fdeee..6a003aae7 100644 --- a/tests/nexus/test_discover_scan.cpp +++ b/tests/nexus/test_discover_scan.cpp @@ -149,7 +149,7 @@ void TestDiscoverScanRequestCallback(void) result = &resultContext.mScanResults[0]; VerifyOrQuit(AsCoreType(&result->mExtAddress) == leader.Get().GetExtAddress()); - VerifyOrQuit(AsCoreType(&result->mExtendedPanId) == leader.Get().GetExtPanId()); + VerifyOrQuit(AsCoreType(&result->mExtendedPanId) == leader.Get().GetExtPanId()); VerifyOrQuit(result->mPanId == leader.Get().GetPanId()); VerifyOrQuit(result->mChannel == leader.Get().GetPanChannel()); VerifyOrQuit(result->mDiscover);