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-pool.git
The following commit(s) were added to refs/heads/master by this push:
new 5035dd89 Normalize test method names
5035dd89 is described below
commit 5035dd8954061f876de3166c9a4892105d1ed63b
Author: Gary Gregory <[email protected]>
AuthorDate: Fri Nov 3 11:27:46 2023 -0400
Normalize test method names
---
src/test/java/org/apache/commons/pool3/impl/NoOpCallStackTest.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/test/java/org/apache/commons/pool3/impl/NoOpCallStackTest.java
b/src/test/java/org/apache/commons/pool3/impl/NoOpCallStackTest.java
index 7189ec34..0b17c5fa 100644
--- a/src/test/java/org/apache/commons/pool3/impl/NoOpCallStackTest.java
+++ b/src/test/java/org/apache/commons/pool3/impl/NoOpCallStackTest.java
@@ -25,7 +25,7 @@ import org.junit.jupiter.api.Test;
public class NoOpCallStackTest {
@Test
- public void printStackTraceIsNoOp() {
+ public void testPrintStackTraceIsNoOp() {
final CallStack stack = NoOpCallStack.INSTANCE;
stack.fillInStackTrace();
final StringWriter writer = new StringWriter();