From 1bc5ed16a9fb90ac5a91f8f559de487b3ac8b76c Mon Sep 17 00:00:00 2001 From: Jean-Francois Penven <67962328+jepenven-silabs@users.noreply.github.com> Date: Thu, 16 Nov 2023 09:59:19 -0500 Subject: [PATCH] Fix Unit Test for PSA Crypto (#30513) --- src/app/tests/TestICDMonitoringTable.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/tests/TestICDMonitoringTable.cpp b/src/app/tests/TestICDMonitoringTable.cpp index c6db890d68d087..170ece20e1778d 100644 --- a/src/app/tests/TestICDMonitoringTable.cpp +++ b/src/app/tests/TestICDMonitoringTable.cpp @@ -91,7 +91,7 @@ void TestEntryAssignationOverload(nlTestSuite * aSuite, void * aContext) NL_TEST_ASSERT(aSuite, entry2.checkInNodeID == entry.checkInNodeID); NL_TEST_ASSERT(aSuite, entry2.monitoredSubject == entry.monitoredSubject); - NL_TEST_ASSERT(aSuite, entry.IsKeyEquivalent(ByteSpan(entry2.key.As()))); + NL_TEST_ASSERT(aSuite, entry2.IsKeyEquivalent(ByteSpan(kKeyBuffer1a))); } void TestEntryKeyFunctions(nlTestSuite * aSuite, void * aContext)