Skip to content

Commit

Permalink
Fix typos
Browse files Browse the repository at this point in the history
  • Loading branch information
AnarManafov committed Oct 10, 2023
1 parent 27525c7 commit 751b23b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions dds-tools-lib/tests/TestSession.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -555,15 +555,15 @@ BOOST_AUTO_TEST_CASE(test_dds_tools_onTaskDone)
BOOST_CHECK(!sid.is_nil());

// test onTaskDone events
// Subscrube on events
// Subscribe on events
SOnTaskDoneRequest::request_t request;
SOnTaskDoneRequest::ptr_t requestPtr = SOnTaskDoneRequest::makeRequest(request);
int nTaskDoneCount{ 0 };
requestPtr->setResponseCallback(
[&nTaskDoneCount](const SOnTaskDoneResponseData& _info)
{
++nTaskDoneCount;
BOOST_TEST_MESSAGE("Recieved onTaskDone event. TaskID: "
BOOST_TEST_MESSAGE("Received onTaskDone event. TaskID: "
<< _info.m_taskID << " ; ExitCode: " << _info.m_exitCode << " ; Signal: "
<< _info.m_signal << " ; Host: " << _info.m_host << " ; WrkDir: " << _info.m_wrkDir);
});
Expand Down

0 comments on commit 751b23b

Please sign in to comment.