File tree Expand file tree Collapse file tree 2 files changed +5
-4
lines changed
spring-integration-webflux/src/test/java/org/springframework/integration/webflux/dsl Expand file tree Collapse file tree 2 files changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -101,11 +101,11 @@ ext {
101101 servletApiVersion = ' 6.1.0'
102102 smackVersion = ' 4.4.8'
103103 springAmqpVersion = ' 4.0.0'
104- springDataVersion = ' 2025.1.1-SNAPSHOT '
104+ springDataVersion = ' 2025.1.1'
105105 springGraphqlVersion = ' 2.0.1-SNAPSHOT'
106106 springKafkaVersion = ' 4.0.1-SNAPSHOT'
107107 springSecurityVersion = ' 7.0.1-SNAPSHOT'
108- springVersion = ' 7.0.2-SNAPSHOT '
108+ springVersion = ' 7.0.2'
109109 springWsVersion = ' 5.0.0'
110110 testcontainersVersion = ' 2.0.2'
111111 tomcatVersion = ' 11.0.15'
Original file line number Diff line number Diff line change 2222
2323import org .assertj .core .api .InstanceOfAssertFactories ;
2424import org .junit .jupiter .api .BeforeEach ;
25- import org .junit .jupiter .api .Disabled ;
2625import org .junit .jupiter .api .Test ;
2726import org .reactivestreams .Publisher ;
2827import reactor .core .publisher .Flux ;
@@ -139,6 +138,9 @@ public void setup() {
139138 .apply (SecurityMockServerConfigurers .springSecurity ())
140139 .configureClient ()
141140 .responseTimeout (Duration .ofSeconds (10 ))
141+ .codecs (clientCodecConfigurer -> clientCodecConfigurer
142+ .defaultCodecs ()
143+ .maxInMemorySize (1024 * 1024 ))
142144 .build ();
143145 }
144146
@@ -237,7 +239,6 @@ public void testHttpReactivePost() {
237239 }
238240
239241 @ Test
240- @ Disabled
241242 public void testHttpReactivePostWithError () {
242243 this .webTestClient .post ().uri ("/reactivePostErrors" )
243244 .headers (headers -> headers .setBasicAuth ("guest" , "guest" ))
You can’t perform that action at this time.
0 commit comments