This is an automated email from the ASF dual-hosted git repository. ggregory pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/commons-collections.git
commit 290d6d99a8318fe19b274424873008fb71534d32 Author: Gary Gregory <[email protected]> AuthorDate: Tue Oct 10 07:43:24 2023 -0400 Fix Checkstyle --- .../org/apache/commons/collections4/map/PassiveExpiringMapTest.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/java/org/apache/commons/collections4/map/PassiveExpiringMapTest.java b/src/test/java/org/apache/commons/collections4/map/PassiveExpiringMapTest.java index 3447e40d7..39a4bb22e 100644 --- a/src/test/java/org/apache/commons/collections4/map/PassiveExpiringMapTest.java +++ b/src/test/java/org/apache/commons/collections4/map/PassiveExpiringMapTest.java @@ -265,7 +265,7 @@ public class PassiveExpiringMapTest<K, V> extends AbstractMapTest<K, V> { assertNotNull(map.get("a")); - try{ + try { Thread.sleep(2 * timeout); } catch (final InterruptedException e) { fail();
