This is an automated email from the ASF dual-hosted git repository. jamesnetherton pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/camel-quarkus.git
The following commit(s) were added to refs/heads/main by this push: new 7dbf83c Remote println from SQS test 7dbf83c is described below commit 7dbf83c7374d9cfdcd17d8a4c0bcf54af259752b Author: Martin Muzikar <mmuzi...@redhat.com> AuthorDate: Mon Mar 14 14:43:37 2022 +0100 Remote println from SQS test --- .../java/org/apache/camel/quarkus/component/aws2/sqs/it/Aws2SqsTest.java | 1 - 1 file changed, 1 deletion(-) diff --git a/integration-test-groups/aws2/aws2-sqs/src/test/java/org/apache/camel/quarkus/component/aws2/sqs/it/Aws2SqsTest.java b/integration-test-groups/aws2/aws2-sqs/src/test/java/org/apache/camel/quarkus/component/aws2/sqs/it/Aws2SqsTest.java index 87d924e..32f1fd8 100644 --- a/integration-test-groups/aws2/aws2-sqs/src/test/java/org/apache/camel/quarkus/component/aws2/sqs/it/Aws2SqsTest.java +++ b/integration-test-groups/aws2/aws2-sqs/src/test/java/org/apache/camel/quarkus/component/aws2/sqs/it/Aws2SqsTest.java @@ -167,7 +167,6 @@ class Aws2SqsTest { Instant start = Instant.now(); final String msgSent = sendSingleMessageToQueue(qName); awaitMessageWithExpectedContentFromQueue(msgSent, qName); - System.out.println(Duration.between(start, Instant.now()).getSeconds()); Assertions.assertTrue(Duration.between(start, Instant.now()).getSeconds() >= delay); } catch (AssertionError e) { e.printStackTrace();