You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by je...@apache.org on 2021/12/16 17:02:39 UTC

[camel] branch main updated: camel-salesforce: Fix test.

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 b1faad4  camel-salesforce: Fix test.
b1faad4 is described below

commit b1faad40fe224c00a7bda90ab07a756ebb7c1ec5
Author: Jeremy Ross <je...@gmail.com>
AuthorDate: Thu Dec 16 11:01:36 2021 -0600

    camel-salesforce: Fix test.
---
 .../org/apache/camel/component/salesforce/RestApiIntegrationTest.java   | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

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 31afd77..d12d70c 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
@@ -803,7 +803,7 @@ public class RestApiIntegrationTest extends AbstractSalesforceTestBase {
                             + Merchandise__c.class.getName());
 
                 from("direct:apexCallPatch").to("salesforce:apexCall/Merchandise/"
-                                                + "&apexMethod=PATCH&sObjectClass=" + MerchandiseResponse.class.getName());
+                                                + "?apexMethod=PATCH&sObjectClass=" + MerchandiseResponse.class.getName());
 
                 from("direct:createSObjectContinueOnException").onException(Exception.class).continued(true).end()
                         .to("salesforce:createSObject");