We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8f3f1a4 commit 50c9b60Copy full SHA for 50c9b60
tests/gtest_decorator.cpp
@@ -259,7 +259,7 @@ TEST(Decorator, DelayWithXML)
259
// The child (AlwaysSuccess) should have been executed after the delay
260
ASSERT_EQ(status, NodeStatus::SUCCESS);
261
// Verify that at least ~200ms have passed (with small tolerance for timing jitter)
262
- ASSERT_GE(elapsed.count(), 180);
+ ASSERT_GE(elapsed.count(), 80);
263
// Ensure the test didn't take too long (sanity check)
264
- ASSERT_LE(elapsed.count(), 500);
+ ASSERT_LE(elapsed.count(), 200);
265
}
0 commit comments