diff --git a/Source/UnitTests/Common/BusyLoopTest.cpp b/Source/UnitTests/Common/BusyLoopTest.cpp index efa13fec6c..0c4d7342ef 100644 --- a/Source/UnitTests/Common/BusyLoopTest.cpp +++ b/Source/UnitTests/Common/BusyLoopTest.cpp @@ -14,7 +14,7 @@ TEST(BusyLoopTest, MultiThreaded) { Common::BlockingLoop loop; Common::Event e; - for (int i = 0; i < 100; i++) + for (int i = 0; i < 10; i++) { loop.Prepare(); std::thread loop_thread([&]() { loop.Run([&]() { e.Set(); }); });