This is an automated email from the ASF dual-hosted git repository. jamesnetherton pushed a commit to branch 2.13.x in repository https://gitbox.apache.org/repos/asf/camel-quarkus.git
commit 844c5007e15c23f7fbd08a6662cc6dcc47067940 Author: aldettinger <aldettin...@gmail.com> AuthorDate: Thu Feb 2 18:57:05 2023 +0100 file: fix warning --- .../test/java/org/apache/camel/quarkus/component/file/it/FileTest.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/integration-tests/file/src/test/java/org/apache/camel/quarkus/component/file/it/FileTest.java b/integration-tests/file/src/test/java/org/apache/camel/quarkus/component/file/it/FileTest.java index a28005535b..8517763f3d 100644 --- a/integration-tests/file/src/test/java/org/apache/camel/quarkus/component/file/it/FileTest.java +++ b/integration-tests/file/src/test/java/org/apache/camel/quarkus/component/file/it/FileTest.java @@ -99,7 +99,7 @@ class FileTest { startRouteAndWait(CONSUME_BATCH); await().atMost(10, TimeUnit.SECONDS).until(() -> { - Map<String, Object> records = RestAssured + Map<?, ?> records = RestAssured .get("/file/getBatch/") .then() .statusCode(200)