Skip to content

Commit 20e49f4

Browse files
committed
Disable failing test due to regression in Spring Framework
See spring-projects/spring-framework#35068
1 parent 4161be2 commit 20e49f4

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

spring-cloud-gateway-mvc/src/test/java/org/springframework/cloud/gateway/mvc/ProductionConfigurationTests.java

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@
2424

2525
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
2626
import org.junit.jupiter.api.BeforeEach;
27+
import org.junit.jupiter.api.Disabled;
2728
import org.junit.jupiter.api.Test;
2829
import org.junit.jupiter.api.extension.ExtendWith;
2930

@@ -261,6 +262,10 @@ public void deleteWithoutBody() {
261262
}
262263

263264
@Test
265+
@Disabled
266+
// TODO This is broken due to a regression in Spring Framework 6.2.8,
267+
// It will be fixed in 6.2.9
268+
// See https://github.com/spring-projects/spring-framework/issues/35068
264269
public void deleteWithBody() {
265270
Foo foo = new Foo("to-be-deleted");
266271
ParameterizedTypeReference<Map<String, Foo>> returnType = new ParameterizedTypeReference<Map<String, Foo>>() {

0 commit comments

Comments
 (0)