Skip to content

Commit 3900c0a

Browse files
committed
Merge branch '3.0.x' into 3.1.x
2 parents 0ba928b + 9a1e146 commit 3900c0a

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

spring-boot-project/spring-boot/src/test/java/org/springframework/boot/ssl/pem/PemPrivateKeyParserTests.java

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,6 @@
2222
import java.security.interfaces.ECPrivateKey;
2323

2424
import org.junit.jupiter.api.Test;
25-
import org.junit.jupiter.api.condition.EnabledForJreRange;
26-
import org.junit.jupiter.api.condition.JRE;
2725
import org.junit.jupiter.params.ParameterizedTest;
2826
import org.junit.jupiter.params.provider.CsvSource;
2927
import org.junit.jupiter.params.provider.ValueSource;
@@ -129,7 +127,6 @@ void shouldNotParseUnsupportedEcPkcs8(String file) {
129127
.hasMessageContaining("Unrecognized private key format");
130128
}
131129

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

147-
@EnabledForJreRange(min = JRE.JAVA_17, disabledReason = "XDH is only supported since Java 17")
148144
@ParameterizedTest
149145
// @formatter:off
150146
@ValueSource(strings = {

0 commit comments

Comments
 (0)