This is an automated email from the ASF dual-hosted git repository. garydgregory pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/commons-xml.git
commit 18c8b3b0b8e8a561354103c7f0f317e380826789 Author: Gary Gregory <[email protected]> AuthorDate: Sun Aug 30 12:28:05 2026 -0400 Disable a failing test on Android and Graalvm --- src/test/java/org/apache/commons/xml/SecureTransformerFactoryTest.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/java/org/apache/commons/xml/SecureTransformerFactoryTest.java b/src/test/java/org/apache/commons/xml/SecureTransformerFactoryTest.java index ac2bf3b..91a0c12 100644 --- a/src/test/java/org/apache/commons/xml/SecureTransformerFactoryTest.java +++ b/src/test/java/org/apache/commons/xml/SecureTransformerFactoryTest.java @@ -207,7 +207,7 @@ void securesAssociatedStylesheetSourcesOfEverySupportedShape() throws Exception } @Test - @DisabledIfSystemProperty(named = "env.target", matches = "android|graalvm") // TODO Who knows! + @DisabledIfSystemProperty(named = "java.vendor", matches = "android|graalvm") // TODO Who knows! void wrapsEveryStandardAndSaxFactoryProduct() throws Exception { final SAXTransformerFactory factory = (SAXTransformerFactory) SecureTransformerFactory.newInstance(); final URIResolver resolver = (href, base) -> null;
