You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by da...@apache.org on 2015/06/28 09:16:41 UTC

camel git commit: Fixed compilation error in test

Repository: camel
Updated Branches:
  refs/heads/camel-2.14.x 8a201e251 -> 38d7dec69


Fixed compilation error in test


Project: http://git-wip-us.apache.org/repos/asf/camel/repo
Commit: http://git-wip-us.apache.org/repos/asf/camel/commit/38d7dec6
Tree: http://git-wip-us.apache.org/repos/asf/camel/tree/38d7dec6
Diff: http://git-wip-us.apache.org/repos/asf/camel/diff/38d7dec6

Branch: refs/heads/camel-2.14.x
Commit: 38d7dec69df7ef05020d3a7edcf0dfcf6a778297
Parents: 8a201e2
Author: Claus Ibsen <da...@apache.org>
Authored: Sun Jun 28 09:22:42 2015 +0200
Committer: Claus Ibsen <da...@apache.org>
Committed: Sun Jun 28 09:22:42 2015 +0200

----------------------------------------------------------------------
 .../camel/component/salesforce/AnalyticsApiIntegrationTest.java   | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/camel/blob/38d7dec6/components/camel-salesforce/camel-salesforce-component/src/test/java/org/apache/camel/component/salesforce/AnalyticsApiIntegrationTest.java
----------------------------------------------------------------------
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 8df7b07..652e634 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
@@ -36,7 +36,6 @@ import org.apache.camel.component.salesforce.api.dto.analytics.reports.ReportMet
 import org.apache.camel.component.salesforce.api.dto.analytics.reports.ReportStatusEnum;
 import org.apache.camel.component.salesforce.api.dto.analytics.reports.SyncReportResults;
 import org.apache.camel.dataformat.csv.CsvDataFormat;
-import org.apache.commons.csv.CSVFormat;
 import org.junit.BeforeClass;
 import org.junit.Test;
 import org.junit.experimental.theories.DataPoints;
@@ -273,7 +272,7 @@ public class AnalyticsApiIntegrationTest extends AbstractSalesforceTestBase {
                 from("direct:getReportResults")
                     .to("salesforce:getReportResults");
 
-                CsvDataFormat csv = new CsvDataFormat(CSVFormat.EXCEL);
+                CsvDataFormat csv = new CsvDataFormat();
 
                 // type converter test
                 from("direct:convertResults")