Skip to content

Commit 54e5150

Browse files
committed
Disables ProductionConfigurationTests.deleteWithBody()
1 parent 9cbec07 commit 54e5150

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

2930
import org.springframework.beans.factory.annotation.Autowired;
@@ -256,6 +257,10 @@ public void deleteWithoutBody() {
256257
assertThat(deleteResponse.getStatusCode()).isEqualTo(HttpStatus.OK);
257258
}
258259

260+
@Disabled
261+
// TODO This is broken due to a regression in Spring Framework 6.2.8,
262+
// It will be fixed in 6.2.9 and boot 3.4.8
263+
// See https://github.com/spring-projects/spring-framework/issues/35068
259264
@Test
260265
public void deleteWithBody() {
261266
Foo foo = new Foo("to-be-deleted");

0 commit comments

Comments
 (0)