This is an automated email from the ASF dual-hosted git repository. orpiske pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/camel.git
commit 7225b71daef87d576d6871505c82c7c091ac92fd Author: Otavio Rodolfo Piske <[email protected]> AuthorDate: Wed Apr 13 11:12:06 2022 +0200 CAMEL-17763: cleaned up unused exceptions in camel-undertow --- .../java/org/apache/camel/component/undertow/MultiPartFormTest.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/camel-undertow/src/test/java/org/apache/camel/component/undertow/MultiPartFormTest.java b/components/camel-undertow/src/test/java/org/apache/camel/component/undertow/MultiPartFormTest.java index 186f7c1ee34..65e935b3bb2 100644 --- a/components/camel-undertow/src/test/java/org/apache/camel/component/undertow/MultiPartFormTest.java +++ b/components/camel-undertow/src/test/java/org/apache/camel/component/undertow/MultiPartFormTest.java @@ -60,7 +60,7 @@ public class MultiPartFormTest extends BaseUndertowTest { } @Test - public void testSendMultiPartFormFromCamelHttpComponnent() throws Exception { + public void testSendMultiPartFormFromCamelHttpComponnent() { String result = template.requestBody("http://localhost:" + getPort() + "/test", createMultipartRequestEntity(), String.class); assertEquals("A binary file of some kind", result, "Get a wrong result");
