gnodet-bot commented on code in PR #13241:
URL: https://github.com/apache/maven/pull/13241#discussion_r4070132909
##########
its/core-it-suite/src/test/java/org/apache/maven/it/MavenITmng5572ReactorPluginExtensionsTest.java:
##########
@@ -57,5 +57,16 @@ public void testit() throws Exception {
verifier.verifyErrorFreeLog();
verifier.verifyTextInLog(
"[WARNING] 'project' uses
'org.apache.maven.its.mng5572:plugin' as extension which is not possible within
the same reactor build. This plugin was pulled from the local repository!");
+
+ Verifier filteredVerifier = newVerifier(testDir);
Review Comment:
⚠️ **Compile error:** `newVerifier(File)` does not exist in
`AbstractMavenIntegrationTestCase`. The available overloads are
`newVerifier(String)` and `newVerifier(Path)`. Since `testDir` is a `File` (as
returned by the existing `extractResources(String)` call at line 45), pass
`testDir.getAbsolutePath()` — consistent with the `setup` and `verifier` calls
above.
```suggestion
Verifier filteredVerifier = newVerifier(testDir.getAbsolutePath());
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]