This is an automated email from the ASF dual-hosted git repository.
bvahdat 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 d63b708 better expect the same object reference rather than equal ones
d63b708 is described below
commit d63b7082c545937fa8c7d5cec1ce69c5a38cf80a
Author: Babak Vahdat <[email protected]>
AuthorDate: Sat Apr 11 01:36:47 2020 +0200
better expect the same object reference rather than equal ones
---
.../camel/builder/endpoint/NormalizedUriPropertyPlaceholderTest.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/core/camel-endpointdsl/src/test/java/org/apache/camel/builder/endpoint/NormalizedUriPropertyPlaceholderTest.java
b/core/camel-endpointdsl/src/test/java/org/apache/camel/builder/endpoint/NormalizedUriPropertyPlaceholderTest.java
index 60d2996..8fdf525 100644
---
a/core/camel-endpointdsl/src/test/java/org/apache/camel/builder/endpoint/NormalizedUriPropertyPlaceholderTest.java
+++
b/core/camel-endpointdsl/src/test/java/org/apache/camel/builder/endpoint/NormalizedUriPropertyPlaceholderTest.java
@@ -61,6 +61,6 @@ public class NormalizedUriPropertyPlaceholderTest extends
CamelTestSupport {
assertMockEndpointsSatisfied();
- assertEquals(result, resultEndpoint);
+ assertSame(result, resultEndpoint);
}
}