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/03/19 15:58:23 UTC

[camel] branch master updated: Camel-Azure: Polished

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 1bfd2a3  Camel-Azure: Polished
1bfd2a3 is described below

commit 1bfd2a3176f89ecfae25af2343708f9f2bb1c811
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Tue Mar 19 16:57:54 2019 +0100

    Camel-Azure: Polished
---
 .../camel/component/azure/blob/BlobServiceAppendConsumerTest.java     | 2 +-
 .../camel/component/azure/blob/BlobServiceBlockConsumerTest.java      | 2 +-
 .../camel/component/azure/blob/BlobServiceProducerSpringTest.java     | 4 ++--
 3 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/components/camel-azure/src/test/java/org/apache/camel/component/azure/blob/BlobServiceAppendConsumerTest.java b/components/camel-azure/src/test/java/org/apache/camel/component/azure/blob/BlobServiceAppendConsumerTest.java
index 443b90f..c297836 100644
--- a/components/camel-azure/src/test/java/org/apache/camel/component/azure/blob/BlobServiceAppendConsumerTest.java
+++ b/components/camel-azure/src/test/java/org/apache/camel/component/azure/blob/BlobServiceAppendConsumerTest.java
@@ -35,7 +35,7 @@ import org.junit.Ignore;
 import org.junit.Test;
 
 public class BlobServiceAppendConsumerTest extends CamelTestSupport {
-    @EndpointInject(uri = "direct:start")
+    @EndpointInject("direct:start")
     ProducerTemplate templateStart;
     
     @Test
diff --git a/components/camel-azure/src/test/java/org/apache/camel/component/azure/blob/BlobServiceBlockConsumerTest.java b/components/camel-azure/src/test/java/org/apache/camel/component/azure/blob/BlobServiceBlockConsumerTest.java
index 5d35e8f..fc203ee 100644
--- a/components/camel-azure/src/test/java/org/apache/camel/component/azure/blob/BlobServiceBlockConsumerTest.java
+++ b/components/camel-azure/src/test/java/org/apache/camel/component/azure/blob/BlobServiceBlockConsumerTest.java
@@ -35,7 +35,7 @@ import org.junit.Ignore;
 import org.junit.Test;
 
 public class BlobServiceBlockConsumerTest extends CamelTestSupport {
-    @EndpointInject(uri = "direct:start")
+    @EndpointInject("direct:start")
     ProducerTemplate templateStart;
     
     @Test
diff --git a/components/camel-azure/src/test/java/org/apache/camel/component/azure/blob/BlobServiceProducerSpringTest.java b/components/camel-azure/src/test/java/org/apache/camel/component/azure/blob/BlobServiceProducerSpringTest.java
index be8d01a..058c0f8 100644
--- a/components/camel-azure/src/test/java/org/apache/camel/component/azure/blob/BlobServiceProducerSpringTest.java
+++ b/components/camel-azure/src/test/java/org/apache/camel/component/azure/blob/BlobServiceProducerSpringTest.java
@@ -34,10 +34,10 @@ import org.springframework.context.support.ClassPathXmlApplicationContext;
 
 public class BlobServiceProducerSpringTest extends CamelSpringTestSupport {
     
-    @EndpointInject(uri = "direct:start")
+    @EndpointInject("direct:start")
     private ProducerTemplate template;
     
-    @EndpointInject(uri = "mock:result")
+    @EndpointInject("mock:result")
     private MockEndpoint result;
     
     @Test