Skip to content

Commit

Permalink
Remove Skipping BouncyCastleJsseITCase now that we have moved to Java 11
Browse files Browse the repository at this point in the history
Signed-off-by: Jorge Solórzano <[email protected]>
  • Loading branch information
jorsol committed Apr 14, 2021
1 parent 349bdb9 commit dbbdb92
Show file tree
Hide file tree
Showing 4 changed files with 0 additions and 16 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,6 @@ public class BouncyCastleFipsJsseITCase extends BouncyCastleFipsJsseTestCase {
@Test
@Override
public void testListProviders() throws Exception {
if (!JavaVersionUtil.isJava11OrHigher()) {
LOG.trace("Skipping BouncyCastleJsseITCase, Java version is older than 11");
return;
}
doTestListProviders();
checkLog(true);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,10 +46,6 @@ public class BouncyCastleFipsJsseTestCase {

@Test
public void testListProviders() throws Exception {
if (!JavaVersionUtil.isJava11OrHigher()) {
LOG.trace("Skipping BouncyCastleJsseITCase, Java version is older than 11");
return;
}
doTestListProviders();
checkLog(false);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,6 @@ public class BouncyCastleJsseITCase extends BouncyCastleJsseTestCase {
@Test
@Override
public void testListProviders() {
if (!JavaVersionUtil.isJava11OrHigher()) {
LOG.trace("Skipping BouncyCastleJsseITCase, Java version is older than 11");
return;
}
doTestListProviders();
checkLog(true);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,10 +36,6 @@ public class BouncyCastleJsseTestCase {

@Test
public void testListProviders() {
if (!JavaVersionUtil.isJava11OrHigher()) {
LOG.trace("Skipping BouncyCastleJsseITCase, Java version is older than 11");
return;
}
doTestListProviders();
checkLog(false);
}
Expand Down

0 comments on commit dbbdb92

Please sign in to comment.