You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by ja...@apache.org on 2019/05/15 08:24:27 UTC

[camel] branch master updated: CAMEL-13526: Remove unnecessary assertion

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

jamesnetherton 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 f6f92a1  CAMEL-13526: Remove unnecessary assertion
f6f92a1 is described below

commit f6f92a18b41e304b2fd15a5e635616b2d03ca5a7
Author: James Netherton <ja...@gmail.com>
AuthorDate: Wed May 15 09:23:47 2019 +0100

    CAMEL-13526: Remove unnecessary assertion
---
 .../java/org/apache/camel/component/docker/DockerClientProfileTest.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/components/camel-docker/src/test/java/org/apache/camel/component/docker/DockerClientProfileTest.java b/components/camel-docker/src/test/java/org/apache/camel/component/docker/DockerClientProfileTest.java
index 7fc444e..7f0fa04 100644
--- a/components/camel-docker/src/test/java/org/apache/camel/component/docker/DockerClientProfileTest.java
+++ b/components/camel-docker/src/test/java/org/apache/camel/component/docker/DockerClientProfileTest.java
@@ -81,7 +81,7 @@ public class DockerClientProfileTest {
         DockerClientProfile profile = new DockerClientProfile();
         profile.setHost("localhost");
         expectedException.expectMessage("port must be specified");
-        assertEquals("tcp://localhost:2375", profile.toUrl());
+        profile.toUrl();
     }
 
     @Test