Skip to content

Commit

Permalink
Merge branch '3.0.x' into 3.1.x
Browse files Browse the repository at this point in the history
  • Loading branch information
mhalbritter committed Sep 18, 2023
2 parents 0ba928b + 9a1e146 commit 3900c0a
Showing 1 changed file with 0 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,6 @@
import java.security.interfaces.ECPrivateKey;

import org.junit.jupiter.api.Test;
import org.junit.jupiter.api.condition.EnabledForJreRange;
import org.junit.jupiter.api.condition.JRE;
import org.junit.jupiter.params.ParameterizedTest;
import org.junit.jupiter.params.provider.CsvSource;
import org.junit.jupiter.params.provider.ValueSource;
Expand Down Expand Up @@ -129,7 +127,6 @@ void shouldNotParseUnsupportedEcPkcs8(String file) {
.hasMessageContaining("Unrecognized private key format");
}

@EnabledForJreRange(min = JRE.JAVA_17, disabledReason = "EdDSA is only supported since Java 17")
@ParameterizedTest
// @formatter:off
@ValueSource(strings = {
Expand All @@ -144,7 +141,6 @@ void shouldParseEdDsaPkcs8(String file) throws IOException {
assertThat(privateKey.getAlgorithm()).isEqualTo("EdDSA");
}

@EnabledForJreRange(min = JRE.JAVA_17, disabledReason = "XDH is only supported since Java 17")
@ParameterizedTest
// @formatter:off
@ValueSource(strings = {
Expand Down

0 comments on commit 3900c0a

Please sign in to comment.