Re-enables CustomBlockHoundIntegrationTest

This commit is contained in:
spencergibb
2024-12-13 12:39:12 -05:00
parent 20a7c90791
commit 3419b41caa

View File

@@ -18,8 +18,6 @@ package org.springframework.cloud.gateway.test;
import org.junit.jupiter.api.Assertions;
import org.junit.jupiter.api.Test;
import org.junit.jupiter.api.condition.DisabledForJreRange;
import org.junit.jupiter.api.condition.JRE;
import reactor.core.publisher.Mono;
import reactor.core.scheduler.Schedulers;
@@ -29,7 +27,6 @@ import reactor.core.scheduler.Schedulers;
public class CustomBlockHoundIntegrationTest {
@Test
@DisabledForJreRange(min = JRE.JAVA_16)
public void shouldThrowErrorForBlockingCallWithCustomBlockHoundIntegration() {
Assertions.assertThrows(RuntimeException.class, () -> Mono.fromCallable(() -> {
Thread.sleep(1);