Skip to content
Permalink
Browse files

Merge pull request #3732 from ropalka/WFCORE-4409

  • Loading branch information
bstansberry committed Apr 14, 2019
2 parents ca8613e + 0a16a15 commit 3b96b115e26a51d9b0cec9110f86813d84fc7a21
@@ -63,8 +63,9 @@


@BeforeClass
public static void noJDK12() {
public static void noJDK12Plus() {
Assume.assumeFalse("Avoiding JDK 12 due to https://bugs.openjdk.java.net/browse/JDK-8219658", "12".equals(System.getProperty("java.specification.version")));
Assume.assumeFalse("Avoiding JDK 13 due to https://bugs.openjdk.java.net/browse/JDK-8219658", "13".equals(System.getProperty("java.specification.version")));
}


@@ -34,8 +34,9 @@
public class AuditLogToTLSSyslogTestCase extends AuditLogToSyslogTestCase {

@BeforeClass
public static void noJDK12() {
public static void noJDK12Plus() {
Assume.assumeFalse("Avoiding JDK 12 due to https://bugs.openjdk.java.net/browse/JDK-8219658", "12".equals(System.getProperty("java.specification.version")));
Assume.assumeFalse("Avoiding JDK 13 due to https://bugs.openjdk.java.net/browse/JDK-8219658", "13".equals(System.getProperty("java.specification.version")));
}

}

0 comments on commit 3b96b11

Please sign in to comment.
You can’t perform that action at this time.