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

[camel] branch master updated: Fixed Test for EKS Component Configuration

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


The following commit(s) were added to refs/heads/master by this push:
     new 2c7b1a2  Fixed Test for EKS Component Configuration
2c7b1a2 is described below

commit 2c7b1a2dd22049b51a3a6c08fbf7f1f413f1548f
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Tue Feb 5 16:21:10 2019 +0100

    Fixed Test for EKS Component Configuration
---
 .../apache/camel/component/aws/eks/EKSComponentConfigurationTest.java   | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/components/camel-aws/src/test/java/org/apache/camel/component/aws/eks/EKSComponentConfigurationTest.java b/components/camel-aws/src/test/java/org/apache/camel/component/aws/eks/EKSComponentConfigurationTest.java
index 399520a..f72aa74 100644
--- a/components/camel-aws/src/test/java/org/apache/camel/component/aws/eks/EKSComponentConfigurationTest.java
+++ b/components/camel-aws/src/test/java/org/apache/camel/component/aws/eks/EKSComponentConfigurationTest.java
@@ -41,7 +41,7 @@ public class EKSComponentConfigurationTest extends CamelTestSupport {
         component.setAccessKey("XXX");
         component.setSecretKey("YYY");
         component.setRegion(Regions.US_WEST_1.toString());
-        EKSEndpoint endpoint = (EKSEndpoint)component.createEndpoint("aws-mq://label?accessKey=xxxxxx&secretKey=yyyyy&region=US_EAST_1");
+        EKSEndpoint endpoint = (EKSEndpoint)component.createEndpoint("aws-eks://label?accessKey=xxxxxx&secretKey=yyyyy&region=US_EAST_1");
         
         assertEquals("xxxxxx", endpoint.getConfiguration().getAccessKey());
         assertEquals("yyyyy", endpoint.getConfiguration().getSecretKey());