Skip to content

Commit

Permalink
CxfClientTest.outInterceptor() gets a different body in native mode q…
Browse files Browse the repository at this point in the history
  • Loading branch information
ppalaga committed Sep 7, 2022
1 parent 6c1095a commit 11af2bd
Showing 1 changed file with 1 addition and 4 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
package io.quarkiverse.cxf.client.it;

import static org.hamcrest.Matchers.containsString;
import static org.hamcrest.Matchers.is;

import java.io.IOException;
Expand Down Expand Up @@ -71,9 +70,7 @@ void outInterceptor() {
.get("/cxf/client/calculator/myFaultyCalculator/multiply")
.then()
.statusCode(500)
// Should be .body(is("No luck at this time, Luke!"));
// see https://github.com/quarkiverse/quarkus-cxf/issues/497
.body(containsString("No luck at this time, Luke!"));
.body(is("No luck at this time, Luke!"));
}

/**
Expand Down

0 comments on commit 11af2bd

Please sign in to comment.