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 0f42078 camel-salesforce: Fix analytics integration test 0f42078 is described below commit 0f420786ffecdbc37274232495d4c0f86e0cac67 Author: Jeremy Ross <jeremy.g.r...@gmail.com> AuthorDate: Sat Sep 18 16:08:59 2021 -0500 camel-salesforce: Fix analytics integration test Empty (but non-null) list response is fine. --- .../apache/camel/component/salesforce/AnalyticsApiIntegrationTest.java | 1 - 1 file changed, 1 deletion(-) diff --git a/components/camel-salesforce/camel-salesforce-component/src/test/java/org/apache/camel/component/salesforce/AnalyticsApiIntegrationTest.java b/components/camel-salesforce/camel-salesforce-component/src/test/java/org/apache/camel/component/salesforce/AnalyticsApiIntegrationTest.java index dd12d99..fa7a698 100644 --- a/components/camel-salesforce/camel-salesforce-component/src/test/java/org/apache/camel/component/salesforce/AnalyticsApiIntegrationTest.java +++ b/components/camel-salesforce/camel-salesforce-component/src/test/java/org/apache/camel/component/salesforce/AnalyticsApiIntegrationTest.java @@ -77,7 +77,6 @@ public class AnalyticsApiIntegrationTest extends AbstractSalesforceTestBase { final List recentReports = template().requestBody("direct:getRecentReports", null, List.class); assertNotNull(recentReports, "getRecentReports"); - assertFalse(recentReports.isEmpty(), "getRecentReports empty"); LOG.debug("getRecentReports: {}", recentReports); }