You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cxf.apache.org by re...@apache.org on 2020/12/07 19:10:13 UTC

[cxf] branch 3.2.x-fixes updated: Fixing checkstyle issues

This is an automated email from the ASF dual-hosted git repository.

reta pushed a commit to branch 3.2.x-fixes
in repository https://gitbox.apache.org/repos/asf/cxf.git


The following commit(s) were added to refs/heads/3.2.x-fixes by this push:
     new 2c242af  Fixing checkstyle issues
2c242af is described below

commit 2c242af8bde920f13a51b6628927393488f4a354
Author: reta <dr...@gmail.com>
AuthorDate: Mon Dec 7 14:09:47 2020 -0500

    Fixing checkstyle issues
---
 .../cxf/systest/jaxrs/reactor/MonoReactorTest.java   | 20 ++++++++++----------
 1 file changed, 10 insertions(+), 10 deletions(-)

diff --git a/systests/jaxrs/src/test/java/org/apache/cxf/systest/jaxrs/reactor/MonoReactorTest.java b/systests/jaxrs/src/test/java/org/apache/cxf/systest/jaxrs/reactor/MonoReactorTest.java
index ff588a1..3842b0c 100644
--- a/systests/jaxrs/src/test/java/org/apache/cxf/systest/jaxrs/reactor/MonoReactorTest.java
+++ b/systests/jaxrs/src/test/java/org/apache/cxf/systest/jaxrs/reactor/MonoReactorTest.java
@@ -118,15 +118,15 @@ public class MonoReactorTest extends AbstractBusClientServerTestBase {
         String address = "http://localhost:" + PORT + "/reactor/mono/error";
         
         StepVerifier
-        .create(ClientBuilder
-            .newClient()
-            .register(new JacksonJsonProvider())
-            .register(new ReactorInvokerProvider())
-            .target(address)
-            .request(MediaType.APPLICATION_JSON)
-            .rx(ReactorInvoker.class)
-            .get(HelloWorldBean.class))
-        .expectErrorMatches(ex -> ex.getCause().getCause() instanceof InternalServerErrorException)
-        .verify();
+            .create(ClientBuilder
+                .newClient()
+                .register(new JacksonJsonProvider())
+                .register(new ReactorInvokerProvider())
+                .target(address)
+                .request(MediaType.APPLICATION_JSON)
+                .rx(ReactorInvoker.class)
+                .get(HelloWorldBean.class))
+            .expectErrorMatches(ex -> ex.getCause().getCause() instanceof InternalServerErrorException)
+            .verify();
     }
 }