diff --git a/.github/workflows/unit-test-coverage.yml b/.github/workflows/unit-test-coverage.yml index 52075fd..e05152c 100644 --- a/.github/workflows/unit-test-coverage.yml +++ b/.github/workflows/unit-test-coverage.yml @@ -8,3 +8,6 @@ jobs: unit-test-coverage: name: Run unit test and coverage uses: thnkslprpt/cFS/.github/workflows/unit-test-coverage.yml@test + with: + max-missed-lines: 4 + max-missed-branches: 4 diff --git a/fsw/src/sample_app.c b/fsw/src/sample_app.c index 9d8eee2..afa8396 100644 --- a/fsw/src/sample_app.c +++ b/fsw/src/sample_app.c @@ -198,7 +198,7 @@ CFE_Status_t SAMPLE_APP_Init(void) CFE_Config_GetVersionString(VersionString, SAMPLE_APP_CFG_MAX_VERSION_STR_LEN, "Sample App", SAMPLE_APP_VERSION, SAMPLE_APP_BUILD_CODENAME, SAMPLE_APP_LAST_OFFICIAL); - CFE_EVS_SendEvent(SAMPLE_APP_INIT_INF_EID, CFE_EVS_EventType_INFORMATION, "Sample is Initialized.%s", + CFE_EVS_SendEvent(SAMPLE_APP_INIT_INF_EID, CFE_EVS_EventType_INFORMATION, "Sample App Initialized.%s", VersionString); }