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-exec.git


The following commit(s) were added to refs/heads/master by this push:
     new 1bff43f  Normalize array type declarations
1bff43f is described below

commit 1bff43f875b822197a29822e8ba3565e94fb7577
Author: Gary Gregory <garydgreg...@gmail.com>
AuthorDate: Wed Aug 23 08:45:55 2023 -0400

    Normalize array type declarations
---
 src/test/java/org/apache/commons/exec/DefaultExecutorTest.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/test/java/org/apache/commons/exec/DefaultExecutorTest.java 
b/src/test/java/org/apache/commons/exec/DefaultExecutorTest.java
index ff1b286..0b10702 100644
--- a/src/test/java/org/apache/commons/exec/DefaultExecutorTest.java
+++ b/src/test/java/org/apache/commons/exec/DefaultExecutorTest.java
@@ -76,7 +76,7 @@ public class DefaultExecutorTest {
     @BeforeClass
     public static void classSetUp() {
 
-        final int statuses[] = TestUtil.getTestScriptCodesForOS();
+        final int[] statuses = TestUtil.getTestScriptCodesForOS();
         SUCCESS_STATUS=statuses[0];
         ERROR_STATUS=statuses[1];
 

Reply via email to