Skip to content

Commit

Permalink
Merge pull request #103 from jphickey/fix-102-midbase
Browse files Browse the repository at this point in the history
Fix #102, remove dependency on MID_BASE defines
  • Loading branch information
dmknutsen authored Dec 15, 2023
2 parents 9a2e639 + 2749d8e commit b678958
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 b678958

Please sign in to comment.