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

acosentino pushed a commit to branch camel-2.x
in repository https://gitbox.apache.org/repos/asf/camel.git

commit fcd4fe130e42d39dea2f5b20f31f8b75302dd450
Author: Andrea Cosentino <anco...@gmail.com>
AuthorDate: Mon Sep 16 15:47:20 2019 +0200

    Camel-Kubernetes: Use the same namespace in the configmap consumer test
---
 .../component/kubernetes/consumer/KubernetesConfigMapsConsumerTest.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/components/camel-kubernetes/src/test/java/org/apache/camel/component/kubernetes/consumer/KubernetesConfigMapsConsumerTest.java
 
b/components/camel-kubernetes/src/test/java/org/apache/camel/component/kubernetes/consumer/KubernetesConfigMapsConsumerTest.java
index 60ce676..5b62438 100644
--- 
a/components/camel-kubernetes/src/test/java/org/apache/camel/component/kubernetes/consumer/KubernetesConfigMapsConsumerTest.java
+++ 
b/components/camel-kubernetes/src/test/java/org/apache/camel/component/kubernetes/consumer/KubernetesConfigMapsConsumerTest.java
@@ -87,7 +87,7 @@ public class KubernetesConfigMapsConsumerTest extends 
KubernetesTestSupport {
             public void configure() throws Exception {
                 
from("direct:createConfigmap").toF("kubernetes-config-maps://%s?oauthToken=%s&operation=createConfigMap",
 host, authToken);
                 
from("direct:deleteConfigmap").toF("kubernetes-config-maps://%s?oauthToken=%s&operation=deleteConfigMap",
 host, authToken);
-                
fromF("kubernetes-config-maps://%s?oauthToken=%s&namespace=myproject&labelKey=this&labelValue=rocks",
 host, authToken).process(new KubernertesProcessor())
+                
fromF("kubernetes-config-maps://%s?oauthToken=%s&namespace=default&labelKey=this&labelValue=rocks",
 host, authToken).process(new KubernertesProcessor())
                     .to(mockResultEndpoint);
             }
         };

Reply via email to