Skip to content

Commit

Permalink
Fix nasa#119, remove dependency on MID_BASE defines
Browse files Browse the repository at this point in the history
Any nonzero value will work
  • Loading branch information
jphickey committed Dec 13, 2023
1 parent f04f6a0 commit dc14784
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions unit-test/utilities/ds_test_utils.h
Original file line number Diff line number Diff line change
Expand Up @@ -81,8 +81,8 @@ extern UT_CmdBuf_t UT_CmdBuf;
#define UT_DS_TEST_ADD(test) UtTest_Add(test, DS_Test_Setup, DS_Test_TearDown, #test)

/* Unit test MID */
#define DS_UT_MID_1 CFE_SB_ValueToMsgId(CFE_PLATFORM_TLM_MID_BASE + 1)
#define DS_UT_MID_2 CFE_SB_ValueToMsgId(CFE_PLATFORM_TLM_MID_BASE + 2)
#define DS_UT_MID_1 CFE_SB_ValueToMsgId(1)
#define DS_UT_MID_2 CFE_SB_ValueToMsgId(2)

/* Unit test osal ID, generic w/ no type */
#define DS_UT_OBJID_1 OS_ObjectIdFromInteger(1)
Expand Down

0 comments on commit dc14784

Please sign in to comment.