[JAVA-18180] Fixed integration test (#13566)
This commit is contained in:
parent
c625ca9866
commit
78fc83b30d
|
@ -136,14 +136,6 @@
|
|||
<layout>JAR</layout>
|
||||
</configuration>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-compiler-plugin</artifactId>
|
||||
<configuration>
|
||||
<source>1.8</source>
|
||||
<target>1.8</target>
|
||||
</configuration>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
|
||||
|
@ -189,7 +181,7 @@
|
|||
<geronimo-json_1.1_spec.version>1.0</geronimo-json_1.1_spec.version>
|
||||
<jetty-reactive-httpclient.version>1.1.6</jetty-reactive-httpclient.version>
|
||||
<okhttp.version>4.0.1</okhttp.version>
|
||||
<reactor-test.version>3.2.10.RELEASE</reactor-test.version>
|
||||
<reactor-test.version>3.5.3</reactor-test.version>
|
||||
<wiremock-standalone.version>2.26.0</wiremock-standalone.version>
|
||||
</properties>
|
||||
|
||||
|
|
|
@ -49,7 +49,7 @@ public class WebClientLoggingIntegrationTest {
|
|||
private String sampleResponseBody;
|
||||
|
||||
@BeforeEach
|
||||
private void setup() throws Exception {
|
||||
void setup() throws Exception {
|
||||
|
||||
post = new Post("Learn WebClient logging with Baeldung!", "", 1);
|
||||
sampleResponseBody = new ObjectMapper().writeValueAsString(post);
|
||||
|
|
Loading…
Reference in New Issue