From 51c88a38f8c20a97392c5de0579e30744e79dec7 Mon Sep 17 00:00:00 2001 From: "Lucas, John P." Date: Fri, 2 Aug 2024 07:06:45 -0400 Subject: [PATCH] [nasa/nos3#176] Resolved issue with Test_SAMPLE_ProcessCommandPacket; --- fsw/unit-test/coveragetest/coveragetest_sample_app.c | 1 + 1 file changed, 1 insertion(+) diff --git a/fsw/unit-test/coveragetest/coveragetest_sample_app.c b/fsw/unit-test/coveragetest/coveragetest_sample_app.c index 14b4595..f996b47 100644 --- a/fsw/unit-test/coveragetest/coveragetest_sample_app.c +++ b/fsw/unit-test/coveragetest/coveragetest_sample_app.c @@ -288,6 +288,7 @@ void Test_SAMPLE_ProcessCommandPacket(void) FcnCode = SAMPLE_NOOP_CC; MsgSize = sizeof(TestMsg.Noop); UT_SetDataBuffer(UT_KEY(CFE_MSG_GetMsgId), &TestMsgId, sizeof(TestMsgId), false); + UT_SetDataBuffer(UT_KEY(CFE_MSG_GetMsgId), &TestMsgId, sizeof(TestMsgId), false); UT_SetDataBuffer(UT_KEY(CFE_MSG_GetFcnCode), &FcnCode, sizeof(FcnCode), false); UT_SetDataBuffer(UT_KEY(CFE_MSG_GetSize), &MsgSize, sizeof(MsgSize), false); SAMPLE_ProcessCommandPacket();