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

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


The following commit(s) were added to refs/heads/main by this push:
     new a415620  CAMEL-17365: camel-salesforce: Fixed CS.
a415620 is described below

commit a41562063335a323b053574e315d614c0f2b33d0
Author: Jeremy Ross <jeremy.g.r...@gmail.com>
AuthorDate: Sun Jan 9 13:10:17 2022 -0600

    CAMEL-17365: camel-salesforce: Fixed CS.
---
 .../org/apache/camel/component/salesforce/RestApiIntegrationTest.java  | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git 
a/components/camel-salesforce/camel-salesforce-component/src/test/java/org/apache/camel/component/salesforce/RestApiIntegrationTest.java
 
b/components/camel-salesforce/camel-salesforce-component/src/test/java/org/apache/camel/component/salesforce/RestApiIntegrationTest.java
index 5c3f727..722cd70 100644
--- 
a/components/camel-salesforce/camel-salesforce-component/src/test/java/org/apache/camel/component/salesforce/RestApiIntegrationTest.java
+++ 
b/components/camel-salesforce/camel-salesforce-component/src/test/java/org/apache/camel/component/salesforce/RestApiIntegrationTest.java
@@ -451,8 +451,7 @@ public class RestApiIntegrationTest extends 
AbstractSalesforceTestBase {
     @Test
     public void testGetResources() throws Exception {
         @SuppressWarnings("unchecked")
-        final Map<String, String> resources =
-                (Map<String, String>) 
template().requestBody("direct:getResources", "");
+        final Map<String, String> resources = (Map<String, String>) 
template().requestBody("direct:getResources", "");
         assertNotNull(resources);
         assertTrue(resources.containsKey("metadata"));
     }

Reply via email to