Skip to content

Commit

Permalink
Fix #102, 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 9a2e639 commit 2749d8e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions unit-test/utilities/lc_test_utils.h
Original file line number Diff line number Diff line change
Expand Up @@ -84,8 +84,8 @@ extern UT_CmdBuf_t UT_CmdBuf;
#define ADD_TEST(test) UtTest_Add((Test_##test), LC_UT_Setup, LC_UT_TearDown, #test)

/* Unit test MID */
#define LC_UT_MID_1 CFE_SB_ValueToMsgId(CFE_PLATFORM_TLM_MID_BASE + 1)
#define LC_UT_MID_2 CFE_SB_ValueToMsgId(CFE_PLATFORM_TLM_MID_BASE + 2)
#define LC_UT_MID_1 CFE_SB_ValueToMsgId(1)
#define LC_UT_MID_2 CFE_SB_ValueToMsgId(2)

/*
* Setup function prior to every test
Expand Down

0 comments on commit 2749d8e

Please sign in to comment.