Skip to content

Commit

Permalink
Small Fix in TestContext (#309)
Browse files Browse the repository at this point in the history
* Update TestContext.cpp

* review comment

* delaystart = ture
  • Loading branch information
Prajapati-Pawan committed Aug 19, 2022
1 parent ca66f83 commit 2d9519e
Showing 1 changed file with 1 addition and 9 deletions.
10 changes: 1 addition & 9 deletions alica_test_utility/src/TestContext.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -27,15 +27,7 @@ int TestContext::init(AlicaCreators& creatorCtx)

int TestContext::init(AlicaCreators&& creatorCtx)
{
_initCalled = true;
if (_communicator) {
_communicator->startCommunication();
}

if (_engine->init(std::move(creatorCtx))) {
return 0;
}
return -1;
return AlicaContext::init(std::move(creatorCtx), true);
}

void TestContext::startEngine()
Expand Down

0 comments on commit 2d9519e

Please sign in to comment.