This is an automated email from the ASF dual-hosted git repository.

slachiewicz pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/maven-reporting-impl.git


The following commit(s) were added to refs/heads/master by this push:
     new 947f19c  Cleanup tests (#218)
947f19c is described below

commit 947f19ce7f4e51f7281ff688667dd1916c17acd0
Author: Sylwester Lachiewicz <[email protected]>
AuthorDate: Sun Dec 21 16:18:44 2025 +0100

    Cleanup tests (#218)
    
    
    Co-authored-by: Moderne <[email protected]>
---
 .../org/apache/maven/reporting/AbstractMavenReportRendererTest.java   | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git 
a/src/test/java/org/apache/maven/reporting/AbstractMavenReportRendererTest.java 
b/src/test/java/org/apache/maven/reporting/AbstractMavenReportRendererTest.java
index 4f29331..6484bc8 100644
--- 
a/src/test/java/org/apache/maven/reporting/AbstractMavenReportRendererTest.java
+++ 
b/src/test/java/org/apache/maven/reporting/AbstractMavenReportRendererTest.java
@@ -31,7 +31,7 @@ import static org.junit.jupiter.api.Assertions.fail;
 /**
  * Test case for some public method in AbstractMavenReportRenderer.
  */
-public class AbstractMavenReportRendererTest {
+class AbstractMavenReportRendererTest {
     private static List<String> applyPattern(String pattern) throws Throwable {
         try {
             Method method = 
AbstractMavenReportRenderer.class.getDeclaredMethod("applyPattern", 
String.class);
@@ -68,7 +68,7 @@ public class AbstractMavenReportRendererTest {
      * @throws Throwable if any
      */
     @Test
-    public void testApplyPattern() throws Throwable {
+    void applyPattern() throws Throwable {
         // the most simple test
         checkPattern("test {text,url}", new String[] {"test ", null, "text", 
"url"});
 

Reply via email to