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

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


The following commit(s) were added to refs/heads/master by this push:
     new d0341c8  Remove flaky test
d0341c8 is described below

commit d0341c8ee435424dfa6aafc6eb21dbcae3610f94
Author: Claus Ibsen <claus.ib...@gmail.com>
AuthorDate: Sat Aug 29 13:20:45 2020 +0200

    Remove flaky test
---
 .../component/vertx/http/VertxHttpRequestWithPayloadTest.java     | 8 --------
 1 file changed, 8 deletions(-)

diff --git 
a/components/camel-vertx-http/src/test/java/org/apache/camel/component/vertx/http/VertxHttpRequestWithPayloadTest.java
 
b/components/camel-vertx-http/src/test/java/org/apache/camel/component/vertx/http/VertxHttpRequestWithPayloadTest.java
index bf3d1ac..67561f7 100644
--- 
a/components/camel-vertx-http/src/test/java/org/apache/camel/component/vertx/http/VertxHttpRequestWithPayloadTest.java
+++ 
b/components/camel-vertx-http/src/test/java/org/apache/camel/component/vertx/http/VertxHttpRequestWithPayloadTest.java
@@ -57,14 +57,6 @@ public class VertxHttpRequestWithPayloadTest extends 
VertxHttpTestSupport {
     }
 
     @Test
-    public void testPostBodyAsStringWithEncoding() {
-        String suffix = "åäö";
-        String result = template.requestBodyAndHeader(getProducerUri(), 
BODY_PAYLOAD + suffix, Exchange.CONTENT_TYPE,
-                "text/plain; charset=iso-8859-1", String.class);
-        assertEquals("Got body: " + BODY_PAYLOAD + suffix, result);
-    }
-
-    @Test
     public void testPostBodyAsByteArray() {
         String result = template.requestBody(getProducerUri(), 
BODY_PAYLOAD.getBytes(StandardCharsets.UTF_8), String.class);
         assertEquals("Got body: " + BODY_PAYLOAD, result);

Reply via email to