This is an automated email from the ASF dual-hosted git repository. ggregory pushed a commit to branch POOL_2_X in repository https://gitbox.apache.org/repos/asf/commons-pool.git
The following commit(s) were added to refs/heads/POOL_2_X by this push: new 6ee92988 Fix typo in comment 6ee92988 is described below commit 6ee9298828809d4af658ddf49c4963a9112cf34e Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Tue Jun 10 13:08:49 2025 -0400 Fix typo in comment --- .../java/org/apache/commons/pool2/impl/TestGenericKeyedObjectPool.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/java/org/apache/commons/pool2/impl/TestGenericKeyedObjectPool.java b/src/test/java/org/apache/commons/pool2/impl/TestGenericKeyedObjectPool.java index e8034d65..da15c3e4 100644 --- a/src/test/java/org/apache/commons/pool2/impl/TestGenericKeyedObjectPool.java +++ b/src/test/java/org/apache/commons/pool2/impl/TestGenericKeyedObjectPool.java @@ -2126,7 +2126,7 @@ public class TestGenericKeyedObjectPool extends AbstractTestKeyedObjectPool { // expected } - // Should have timeed out after 1000 ms from the start time + // Should have timed out after 1000 ms from the start time final Duration duration = Duration.between(startTime, Instant.now()); assertTrue(duration.toMillis() < maxWaitDuration.toMillis() + 10, // allow for some timing delay "Thread A should have timed out after " + maxWaitDuration.toMillis() + " ms, but took " + duration.toMillis() + " ms");