Skip to content

Commit 8968d9e

Browse files
committed
Merge branch '3.2.x' into 3.3.x
Closes gh-41922
2 parents a19d69e + bc1920d commit 8968d9e

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

spring-boot-project/spring-boot-autoconfigure/src/test/java/org/springframework/boot/autoconfigure/jms/artemis/ArtemisAutoConfigurationTests.java

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
import org.apache.activemq.artemis.jms.server.config.impl.JMSQueueConfigurationImpl;
4242
import org.apache.activemq.artemis.jms.server.config.impl.TopicConfigurationImpl;
4343
import org.junit.jupiter.api.Test;
44-
import org.junit.jupiter.api.condition.DisabledOnJre;
44+
import org.junit.jupiter.api.condition.EnabledForJreRange;
4545
import org.junit.jupiter.api.condition.JRE;
4646
import org.junit.jupiter.api.io.TempDir;
4747
import org.messaginghub.pooled.jms.JmsPoolConnectionFactory;
@@ -66,7 +66,8 @@
6666
* @author Eddú Meléndez
6767
* @author Stephane Nicoll
6868
*/
69-
@DisabledOnJre(value = JRE.OTHER, disabledReason = "https://issues.apache.org/jira/browse/ARTEMIS-4975")
69+
@EnabledForJreRange(min = JRE.JAVA_17, max = JRE.JAVA_22,
70+
disabledReason = "https://issues.apache.org/jira/browse/ARTEMIS-4975")
7071
class ArtemisAutoConfigurationTests {
7172

7273
private final ApplicationContextRunner contextRunner = new ApplicationContextRunner()

0 commit comments

Comments
 (0)