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 31fcbfaccb74550a7336d7b0cb563b865eacb73a Author: Andrea Cosentino <[email protected]> AuthorDate: Fri Feb 26 09:18:31 2021 +0100 CAMEL-16171 - Add uri-endpoint-override options to all AWS2 components - AWS2-CW component --- .../apache/camel/component/aws2/cw/CwComponentConfigurationTest.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/camel-aws2-cw/src/test/java/org/apache/camel/component/aws2/cw/CwComponentConfigurationTest.java b/components/camel-aws2-cw/src/test/java/org/apache/camel/component/aws2/cw/CwComponentConfigurationTest.java index 34c5957..bc70541 100644 --- a/components/camel-aws2-cw/src/test/java/org/apache/camel/component/aws2/cw/CwComponentConfigurationTest.java +++ b/components/camel-aws2-cw/src/test/java/org/apache/camel/component/aws2/cw/CwComponentConfigurationTest.java @@ -133,7 +133,7 @@ public class CwComponentConfigurationTest extends CamelTestSupport { assertEquals("camel.apache.org/test", endpoint.getConfiguration().getNamespace()); assertEquals("XXX", endpoint.getConfiguration().getAccessKey()); assertEquals("YYY", endpoint.getConfiguration().getSecretKey()); - assertEquals("US_WEST_1", endpoint.getConfiguration().getRegion()); + assertEquals("us-west-1", endpoint.getConfiguration().getRegion()); assertTrue(endpoint.getConfiguration().isOverrideEndpoint()); assertEquals("http://localhost:9090", endpoint.getConfiguration().getUriEndpointOverride()); }
