From 219efda433781adf124a5fad2f1a88c4ddc1160d Mon Sep 17 00:00:00 2001 From: Vishal M Yadav Date: Sun, 14 Apr 2024 19:44:09 +0530 Subject: [PATCH] fixed ci --- .../org/apache/eventmesh/common/utils/ThreadUtilsTest.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/eventmesh-common/src/test/java/org/apache/eventmesh/common/utils/ThreadUtilsTest.java b/eventmesh-common/src/test/java/org/apache/eventmesh/common/utils/ThreadUtilsTest.java index 16308e006e..2b94de5bf4 100644 --- a/eventmesh-common/src/test/java/org/apache/eventmesh/common/utils/ThreadUtilsTest.java +++ b/eventmesh-common/src/test/java/org/apache/eventmesh/common/utils/ThreadUtilsTest.java @@ -20,7 +20,8 @@ public void testRandomPauseDurationWithinBounds() throws InterruptedException { long duration = endTime - startTime; - assertTrue(duration >= min && duration <= max + 10, "The pause duration should be within the specified bounds, allowing a small margin for timing inaccuracies."); + assertTrue(duration >= min && duration <= max + 10, + "The pause duration should be within the specified bounds, allowing a small margin for timing inaccuracies."); } @Test