You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by ac...@apache.org on 2018/09/06 05:47:41 UTC

[camel] 02/02: Camel-restlet: Removed a system.out.println statement from test

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

acosentino pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/camel.git

commit f7cacf51b799b7e9c4cff37e4575edd381c0cdb7
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Thu Sep 6 07:47:04 2018 +0200

    Camel-restlet: Removed a system.out.println statement from test
---
 .../java/org/apache/camel/component/restlet/RestletInvalidURLTest.java   | 1 -
 1 file changed, 1 deletion(-)

diff --git a/components/camel-restlet/src/test/java/org/apache/camel/component/restlet/RestletInvalidURLTest.java b/components/camel-restlet/src/test/java/org/apache/camel/component/restlet/RestletInvalidURLTest.java
index a40597e..9c69abb 100644
--- a/components/camel-restlet/src/test/java/org/apache/camel/component/restlet/RestletInvalidURLTest.java
+++ b/components/camel-restlet/src/test/java/org/apache/camel/component/restlet/RestletInvalidURLTest.java
@@ -44,7 +44,6 @@ public class RestletInvalidURLTest extends RestletTestSupport {
     @Test
     public void testExceptionResponse() throws Exception {
         HttpResponse response = doExecute(new HttpPost("http://localhost:" + portNum + "/users/123/45"));
-        System.out.println(response.getStatusLine().getStatusCode());
         assertEquals(404, response.getStatusLine().getStatusCode());
     }