Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion modules/cfe_testcase/src/es_application_control_test.c
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ void TestApplicationControl(void)
* error is ignored in CFE_ES_ReloadApp and file io error is returned
* most other functions return a CFE_ES_BAD_ARGUMENT in this situation
*/
UtAssert_UINT32_EQ(CFE_ES_ReloadApp(TestAppId, NULL), CFE_ES_FILE_IO_ERR);
UtAssert_UINT32_EQ(CFE_ES_ReloadApp(TestAppId, ""), CFE_ES_FILE_IO_ERR);
UtAssert_UINT32_EQ(CFE_ES_ReloadApp(TestAppId, "/cf/NOT_cfe_testcase.so"), CFE_ES_FILE_IO_ERR);
UtAssert_UINT32_EQ(CFE_ES_ReloadApp(CFE_ES_APPID_UNDEFINED, "/cf/cfe_testcase.so"),
CFE_ES_ERR_RESOURCEID_NOT_VALID);
Expand Down
Loading