JiriOndrusek commented on a change in pull request #2254:
URL: https://github.com/apache/camel-quarkus/pull/2254#discussion_r579028288
##########
File path:
integration-tests/nitrite/src/test/java/org/apache/camel/quarkus/component/nitrite/it/NitriteTest.java
##########
@@ -64,12 +98,15 @@ public void repositoryClass() throws
CloneNotSupportedException {
/* Insert Leonard */
RestAssured.given()
.contentType(ContentType.JSON)
+ .queryParam("mappable", mappable)
.body(leonard)
.post("/nitrite/repositoryClass")
.then()
.statusCode(200)
.body("name", is("Leonard"));
- RestAssured.get("/nitrite/repositoryClass")
+ RestAssured.given()
+ .queryParam("mappable", mappable)
+ .post("/nitrite/getRepositoryClass")
Review comment:
I'll refactor it as you suggested. It would make more sense, I can not
be 100% sure, that this behavior will stay...
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]