This is an automated email from the ASF dual-hosted git repository.
cstamas pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/maven.git
The following commit(s) were added to refs/heads/master by this push:
new a2ee8f8bc2 Fix for HelperImplTest
a2ee8f8bc2 is described below
commit a2ee8f8bc2206749b084e19b7a8f52e7bea9dcea
Author: Tamas Cservenak <[email protected]>
AuthorDate: Tue Jan 7 12:34:28 2025 +0100
Fix for HelperImplTest
The UT runs for 60 sec that is unacceptable. This fix
returns its runtime to 10+ sec.
---
.../test/java/org/apache/maven/cling/executor/impl/HelperImplTest.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/impl/maven-executor/src/test/java/org/apache/maven/cling/executor/impl/HelperImplTest.java
b/impl/maven-executor/src/test/java/org/apache/maven/cling/executor/impl/HelperImplTest.java
index 3e21b631bd..aa20935087 100644
---
a/impl/maven-executor/src/test/java/org/apache/maven/cling/executor/impl/HelperImplTest.java
+++
b/impl/maven-executor/src/test/java/org/apache/maven/cling/executor/impl/HelperImplTest.java
@@ -42,7 +42,7 @@ public class HelperImplTest {
private static final ForkedMavenExecutor FORKED_MAVEN_EXECUTOR = new
ForkedMavenExecutor();
@TempDir
- private Path userHome;
+ private static Path userHome;
@ParameterizedTest
@EnumSource(ExecutorHelper.Mode.class)