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-daemon.git
The following commit(s) were added to refs/heads/master by this push: new 84cf916 Use JUnit 5 convention for test method visibility 84cf916 is described below commit 84cf916f82ee9c7ae87586659a6a0fc9e14dd63e Author: Gary D. Gregory <garydgreg...@gmail.com> AuthorDate: Sat Jun 7 14:44:07 2025 -0400 Use JUnit 5 convention for test method visibility --- src/test/java/org/apache/commons/daemon/DaemonInitExceptionTest.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/test/java/org/apache/commons/daemon/DaemonInitExceptionTest.java b/src/test/java/org/apache/commons/daemon/DaemonInitExceptionTest.java index 04c9393..068c7de 100644 --- a/src/test/java/org/apache/commons/daemon/DaemonInitExceptionTest.java +++ b/src/test/java/org/apache/commons/daemon/DaemonInitExceptionTest.java @@ -23,10 +23,10 @@ import java.io.IOException; import org.junit.jupiter.api.Test; -public class DaemonInitExceptionTest { +class DaemonInitExceptionTest { @Test - public void test() { + void test() { final IOException e = new IOException(); assertEquals(e, new DaemonInitException("Test", e).getCause()); }