You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by or...@apache.org on 2022/05/31 15:23:20 UTC

[camel] 05/10: (chores) camel-azure-storage-blob: rename manual test

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

orpiske pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel.git

commit 0ceaf1909e978e2b46ce5397147ba6374a2f47c4
Author: Otavio Rodolfo Piske <an...@gmail.com>
AuthorDate: Tue May 31 15:11:36 2022 +0200

    (chores) camel-azure-storage-blob: rename manual test
    
    This prevent it from being flagged with missing assertions in code analysis
---
 .../{BlobCopyProducerIt.java => BlobCopyProducerManualIT.java}      | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/components/camel-azure/camel-azure-storage-blob/src/test/java/org/apache/camel/component/azure/storage/blob/integration/BlobCopyProducerIt.java b/components/camel-azure/camel-azure-storage-blob/src/test/java/org/apache/camel/component/azure/storage/blob/integration/BlobCopyProducerManualIT.java
similarity index 93%
rename from components/camel-azure/camel-azure-storage-blob/src/test/java/org/apache/camel/component/azure/storage/blob/integration/BlobCopyProducerIt.java
rename to components/camel-azure/camel-azure-storage-blob/src/test/java/org/apache/camel/component/azure/storage/blob/integration/BlobCopyProducerManualIT.java
index 766b89a50e1..80af145a521 100644
--- a/components/camel-azure/camel-azure-storage-blob/src/test/java/org/apache/camel/component/azure/storage/blob/integration/BlobCopyProducerIt.java
+++ b/components/camel-azure/camel-azure-storage-blob/src/test/java/org/apache/camel/component/azure/storage/blob/integration/BlobCopyProducerManualIT.java
@@ -21,11 +21,11 @@ import org.apache.camel.ProducerTemplate;
 import org.apache.camel.builder.RouteBuilder;
 import org.apache.camel.component.azure.storage.blob.BlobConstants;
 import org.apache.camel.test.junit5.CamelTestSupport;
-import org.junit.Ignore;
+import org.junit.jupiter.api.Disabled;
 import org.junit.jupiter.api.Test;
 
-@Ignore("Requires real credentials")
-class BlobCopyProducerIt extends CamelTestSupport {
+@Disabled("Manual test that requires real credentials")
+class BlobCopyProducerManualIT extends CamelTestSupport {
 
     @EndpointInject
     private ProducerTemplate template;