Skip to content

Commit 4bd37c3

Browse files
thejasvivAbdul Kolarkunnu
authored and
Abdul Kolarkunnu
committedAug 20, 2021
8272708: [Test]: Cleanup: test/jdk/security/infra/java/security/cert/CertPathValidator/certification/BuypassCA.java no longer needs ocspEnabled
Reviewed-by: rhalade
1 parent ddcd851 commit 4bd37c3

File tree

1 file changed

+2
-6
lines changed
  • test/jdk/security/infra/java/security/cert/CertPathValidator/certification

1 file changed

+2
-6
lines changed
 

‎test/jdk/security/infra/java/security/cert/CertPathValidator/certification/BuypassCA.java

+2-6
Original file line numberDiff line numberDiff line change
@@ -57,18 +57,15 @@ public static void main(String[] args) throws Exception {
5757

5858
ValidatePathWithParams pathValidator = new ValidatePathWithParams(null);
5959

60-
boolean ocspEnabled = true;
61-
6260
if (args.length >= 1 && "CRL".equalsIgnoreCase(args[0])) {
6361
pathValidator.enableCRLCheck();
64-
ocspEnabled = false;
6562
} else {
6663
// OCSP check by default
6764
pathValidator.enableOCSPCheck();
6865
}
6966

7067
new BuypassClass2().runTest(pathValidator);
71-
new BuypassClass3().runTest(pathValidator, ocspEnabled);
68+
new BuypassClass3().runTest(pathValidator);
7269
}
7370
}
7471

@@ -320,8 +317,7 @@ class BuypassClass3 {
320317
"BJmiWd5uUxev0nVw0saqvlo4yAEBq4rI/DieKcQI4qEI8myzoS0R0azMfLM=\n" +
321318
"-----END CERTIFICATE-----";
322319

323-
public void runTest(ValidatePathWithParams pathValidator, boolean ocspEnabled)
324-
throws Exception {
320+
public void runTest(ValidatePathWithParams pathValidator) throws Exception {
325321
// Validate valid
326322
pathValidator.validate(new String[]{VALID_CLASS_3, INT_CLASS_3},
327323
ValidatePathWithParams.Status.GOOD, null, System.out);

0 commit comments

Comments
 (0)
Please sign in to comment.