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 f0bf691110 Quickfix for bfc30f1fa89741fdafdfa26725b5e0795a619708
f0bf691110 is described below

commit f0bf691110e0588fc57de8b16d617728636b63e0
Author: Tamas Cservenak <[email protected]>
AuthorDate: Fri Jun 19 16:04:35 2026 +0200

    Quickfix for bfc30f1fa89741fdafdfa26725b5e0795a619708
---
 .../it/MavenITgh12301StackOverflowInternalParentRevisionTest.java   | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git 
a/its/core-it-suite/src/test/java/org/apache/maven/it/MavenITgh12301StackOverflowInternalParentRevisionTest.java
 
b/its/core-it-suite/src/test/java/org/apache/maven/it/MavenITgh12301StackOverflowInternalParentRevisionTest.java
index dd24924ad1..72938ab40e 100644
--- 
a/its/core-it-suite/src/test/java/org/apache/maven/it/MavenITgh12301StackOverflowInternalParentRevisionTest.java
+++ 
b/its/core-it-suite/src/test/java/org/apache/maven/it/MavenITgh12301StackOverflowInternalParentRevisionTest.java
@@ -18,7 +18,7 @@
  */
 package org.apache.maven.it;
 
-import java.io.File;
+import java.nio.file.Path;
 
 import org.junit.jupiter.api.Test;
 
@@ -31,9 +31,9 @@ public class 
MavenITgh12301StackOverflowInternalParentRevisionTest extends Abstr
 
     @Test
     public void testNoStackOverflowWithInternalParentAndRevision() throws 
Exception {
-        File testDir = 
extractResources("/gh-12301-stackoverflow-internal-parent");
+        Path testDir = 
extractResources("/gh-12301-stackoverflow-internal-parent");
 
-        Verifier verifier = newVerifier(testDir.getAbsolutePath());
+        Verifier verifier = newVerifier(testDir.toAbsolutePath());
         verifier.setAutoclean(false);
         verifier.deleteArtifacts("org.apache.maven.its.gh12301");
         verifier.addCliArgument("-Drevision=1.0-SNAPSHOT");

Reply via email to