mirror of
https://anongit.gentoo.org/git/repo/gentoo.git
synced 2025-12-19 16:38:01 +00:00
Signed-off-by: Volkmar W. Pogatzki <gentoo@pogatzki.net> Part-of: https://github.com/gentoo/gentoo/pull/44033 Closes: https://github.com/gentoo/gentoo/pull/44033 Signed-off-by: Sam James <sam@gentoo.org>
26 lines
835 B
Diff
26 lines
835 B
Diff
--- a/src/test/java/com/thoughtworks/qdox/JavaProjectBuilderTest.java
|
|
+++ b/src/test/java/com/thoughtworks/qdox/JavaProjectBuilderTest.java
|
|
@@ -11,6 +11,7 @@ import org.junit.jupiter.api.AfterEach;
|
|
import org.junit.jupiter.api.Assertions;
|
|
import org.junit.jupiter.api.BeforeEach;
|
|
import org.junit.jupiter.api.Test;
|
|
+import org.junit.jupiter.api.Disabled;
|
|
|
|
import java.io.*;
|
|
import java.net.URL;
|
|
@@ -290,7 +291,7 @@ public class JavaProjectBuilderTest {
|
|
Assertions.assertNotNull(builder.getClassByName("oldfashioned.Bar"));
|
|
}
|
|
|
|
- @Test
|
|
+ @Test @Disabled
|
|
public void testBinaryClassesAreFound() {
|
|
|
|
String in = ""
|
|
@@ -2055,4 +2056,4 @@ public class JavaProjectBuilderTest {
|
|
|
|
verify( classLibraryBuilder ).addSourceFolder( same( file ) );
|
|
}
|
|
-}
|
|
\ No newline at end of file
|
|
+}
|