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

matthiasblaesing pushed a commit to branch try_fix_commit_validation2
in repository https://gitbox.apache.org/repos/asf/netbeans.git


The following commit(s) were added to refs/heads/try_fix_commit_validation2 by 
this push:
     new 40a60e3110 Skip maven action template in instanceablity check
40a60e3110 is described below

commit 40a60e311000977b490935c6bf762464d3ddaa96
Author: Matthias Bläsing <[email protected]>
AuthorDate: Sun May 29 17:10:54 2022 +0200

    Skip maven action template in instanceablity check
---
 .../org/netbeans/core/validation/ValidateLayerConsistencyTest.java   | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git 
a/platform/o.n.core/test/qa-functional/src/org/netbeans/core/validation/ValidateLayerConsistencyTest.java
 
b/platform/o.n.core/test/qa-functional/src/org/netbeans/core/validation/ValidateLayerConsistencyTest.java
index 1b6d38658f..e0f5b553aa 100755
--- 
a/platform/o.n.core/test/qa-functional/src/org/netbeans/core/validation/ValidateLayerConsistencyTest.java
+++ 
b/platform/o.n.core/test/qa-functional/src/org/netbeans/core/validation/ValidateLayerConsistencyTest.java
@@ -71,6 +71,8 @@ import org.openide.util.Lookup;
 import org.openide.util.Mutex;
 import org.openide.util.NbCollections;
 
+import static java.util.Arrays.asList;
+
 /** Checks consistency of System File System contents.
  */
 public class ValidateLayerConsistencyTest extends NbTestCase {
@@ -344,7 +346,7 @@ public class ValidateLayerConsistencyTest extends 
NbTestCase {
     
     public void testInstantiateAllInstances () {
         List<String> errors = new ArrayList<String>();
-        
+
         Enumeration<? extends FileObject> files = 
FileUtil.getConfigRoot().getChildren(true);
         while (files.hasMoreElements()) {
             FileObject fo = files.nextElement();
@@ -881,6 +883,7 @@ public class ValidateLayerConsistencyTest extends 
NbTestCase {
         
"EnvironmentProviders/ProfileTypes/Execution/nb-j2ee-deployment.instance",
         "Shortcuts/D-BACK_QUOTE.shadow",
         "Windows2/Components/", // cannot be loaded with a headless toolkit, 
so we have to skip these for now
+        "Maven/actionTemplate.instance", // From: 
java/maven/src/org/netbeans/modules/maven/layer.xml"
     };
     private boolean skipFile(FileObject fo) {
         String s = fo.getPath();


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists

Reply via email to