Skip to content

Commit

Permalink
Merge pull request #5677 from ropalka/WFCORE-6519
Browse files Browse the repository at this point in the history
[WFCORE-6519] Enabling logging tests because they no longer fail neither on JDK17 not on JDK21
  • Loading branch information
yersan authored Sep 25, 2023
2 parents 4de6021 + 1422ace commit 6adbf1f
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 16 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,7 @@
import org.jboss.dmr.ModelNode;
import org.junit.After;
import org.junit.Assert;
import org.junit.Assume;
import org.junit.Before;
import org.junit.BeforeClass;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.productivity.java.syslog4j.server.SyslogServerEventIF;
Expand All @@ -62,12 +60,6 @@ public class AuditLogBootingSyslogTest {
private static final AuditLogToTLSElytronSyslogSetup SYSLOG_SETUP = new AuditLogToTLSElytronSyslogSetup();


@BeforeClass
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")));
}


@Inject
private ServerController container;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,6 @@
*/
package org.jboss.as.test.integration.auditlog;

import org.junit.Assume;
import org.junit.BeforeClass;
import org.wildfly.core.testrunner.ServerSetup;
import org.wildfly.core.testrunner.WildFlyRunner;
import org.junit.runner.RunWith;
Expand All @@ -32,10 +30,4 @@
//@RunAsClient
@ServerSetup(AuditLogToTLSSyslogSetup.class)
public class AuditLogToTLSSyslogTestCase extends AuditLogToSyslogTestCase {

@BeforeClass
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")));
}

}

0 comments on commit 6adbf1f

Please sign in to comment.