Skip to content

Commit

Permalink
HOTFIX: Another rename for compatibility with sample_app PR #73
Browse files Browse the repository at this point in the history
  • Loading branch information
Gerardo E. Cruz-Ortiz committed Jun 17, 2020
1 parent 0a2dbfc commit 6b7defb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions unit-test/coveragetest/coveragetest_sample_app.c
Original file line number Diff line number Diff line change
Expand Up @@ -585,10 +585,10 @@ void Test_SAMPLE_TblValidationFunc(void)
/* nominal case (0) should succeed */
UT_TEST_FUNCTION_RC(SAMPLE_TblValidationFunc(&TestTblData), CFE_SUCCESS);

/* error case should return SAMPLE_TABLE_OUT_OF_RANGE_ERR_CODE */
/* error case should return SAMPLE_APP_TABLE_OUT_OF_RANGE_ERR_CODE */
TestTblData.Int1 = 1 + SAMPLE_APP_TBL_ELEMENT_1_MAX;
UT_TEST_FUNCTION_RC(SAMPLE_TblValidationFunc(&TestTblData),
SAMPLE_TABLE_OUT_OF_RANGE_ERR_CODE);
SAMPLE_APP_TABLE_OUT_OF_RANGE_ERR_CODE);
}


Expand Down

0 comments on commit 6b7defb

Please sign in to comment.