Skip to content

Commit

Permalink
updated to match change in enum member names
Browse files Browse the repository at this point in the history
  • Loading branch information
kevin-f-ortega authored and LeStarch committed Aug 26, 2021
1 parent a00f4c7 commit dbef5e2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Svc/FileDownlink/test/ut/Tester.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -338,7 +338,7 @@ namespace Svc {
destFileNameString destFileArg(destFileName);
Svc::SendFileResponse resp = this->invoke_to_SendFile(0, srcFileArg, destFileArg, 0, 0);

ASSERT_EQ(resp.getstatus(), SendFileStatus::OK);
ASSERT_EQ(resp.getstatus(), SendFileStatus::STATUS_OK);
ASSERT_EQ(resp.getcontext(), 0);

this->component.Run_handler(0,0); // Dequeue file downlink request
Expand All @@ -350,7 +350,7 @@ namespace Svc {
}

ASSERT_from_FileComplete_SIZE(1);
ASSERT_from_FileComplete(0, Svc::SendFileResponse(SendFileStatus(SendFileStatus::OK), 0));
ASSERT_from_FileComplete(0, Svc::SendFileResponse(SendFileStatus(SendFileStatus::STATUS_OK), 0));

// Assert telemetry
ASSERT_TLM_SIZE(4);
Expand Down

0 comments on commit dbef5e2

Please sign in to comment.