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

stbischof pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/felix-dev.git

commit 5733fe45e4ea213ac9056bdf0e946359bba35156
Author: Paul <[email protected]>
AuthorDate: Sat May 25 22:17:12 2024 +0200

    Remove fixup test
---
 .../apache/felix/bundleplugin/BundlePluginTest.java | 21 +--------------------
 1 file changed, 1 insertion(+), 20 deletions(-)

diff --git 
a/tools/maven-bundle-plugin/src/test/java/org/apache/felix/bundleplugin/BundlePluginTest.java
 
b/tools/maven-bundle-plugin/src/test/java/org/apache/felix/bundleplugin/BundlePluginTest.java
index 6eaa2ef7b1..a6d5ced631 100644
--- 
a/tools/maven-bundle-plugin/src/test/java/org/apache/felix/bundleplugin/BundlePluginTest.java
+++ 
b/tools/maven-bundle-plugin/src/test/java/org/apache/felix/bundleplugin/BundlePluginTest.java
@@ -414,25 +414,6 @@ public class BundlePluginTest extends 
AbstractBundlePluginTest
 
         File file = new File( getBasedir(), "target" + File.separatorChar + 
"test.props" );
         builder.getProperties().store( new FileOutputStream( file ), "TEST" );
-    }
-
-    public void testIncludeJava9Fixups() {
-        Builder analyzer = new Builder();
-
-        MavenProject project = getMavenProjectStub();
-        BundlePlugin.includeJava9Fixups(project, analyzer);
-
-        assertEquals("Classes found in the wrong directory;is:=warning", 
analyzer.get("-fixupmessages"));
-    }
-
-    public void testOverrideJava9Fixups() {
-        Builder analyzer = new Builder();
-
-        MavenProject project = getMavenProjectStub();
-        analyzer.set("-fixupmessages", "Classes found in the wrong 
directory;is:=error");
-        BundlePlugin.includeJava9Fixups(project, analyzer);
-
-        assertEquals("Classes found in the wrong directory;is:=error", 
analyzer.get("-fixupmessages"));
-    }
+   } 
 
 }

Reply via email to