Skip to content

Commit

Permalink
AF-2797: Reenable tests on jdk 11 (#3559)
Browse files Browse the repository at this point in the history
Due to recent jdk11 support [1] introduced on master we should re-enable few tests [2] not working on jdk 11 previously.

[1] - https://issues.redhat.com/browse/AF-1799
[2] - https://issues.redhat.com/browse/AF-2797
  • Loading branch information
Jozef Marko authored Feb 8, 2021
1 parent 76d9c9c commit d7f0d76
Showing 1 changed file with 0 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@
import java.util.Optional;
import java.util.stream.Stream;

import org.junit.Assume;
import org.junit.Before;
import org.junit.Test;
import org.junit.runner.RunWith;
Expand Down Expand Up @@ -95,14 +94,6 @@ public class AddOutputClauseCommandTest {

private AddOutputClauseCommand command;

@Before
public void doNotRunTestsOnJdkEleven() {

final String javaVersion = "11";
final String javaVersionPropertyKey = "java.version";
Assume.assumeFalse(System.getProperty(javaVersionPropertyKey).contains(javaVersion));
}

@Before
public void setUp() throws Exception {
this.dtable = new DecisionTable();
Expand Down

0 comments on commit d7f0d76

Please sign in to comment.