Skip to content

Commit

Permalink
Remove unessecary sleep (#2357)
Browse files Browse the repository at this point in the history
Im not why this sleep was her in the first place. But it does not seem
to be needed.

Signed-off-by: Arjo Chakravarty <[email protected]>
  • Loading branch information
arjo129 authored Apr 4, 2024
1 parent b9138fb commit 6884e66
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion test/integration/thruster.cc
Original file line number Diff line number Diff line change
Expand Up @@ -248,7 +248,6 @@ void ThrusterTest::TestWorld(const std::string &_world,
for (sleep = 0; (modelPoses.empty() || modelPoses.back().Pos().X() < 5.0) &&
sleep < maxSleep; ++sleep)
{
std::this_thread::sleep_for(std::chrono::milliseconds(100));
fixture.Server()->Run(true, 100, false);
}
EXPECT_LT(sleep, maxSleep);
Expand Down

0 comments on commit 6884e66

Please sign in to comment.