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 2022/08/20 20:31:18 UTC

[camel] branch main updated: camel-salesforce: JUnit 5.9.0 compatibility

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 7ec5b085b1a camel-salesforce: JUnit 5.9.0 compatibility
7ec5b085b1a is described below

commit 7ec5b085b1a78f902206022d74a77d09546a7a56
Author: Jeremy Ross <je...@gmail.com>
AuthorDate: Sat Aug 20 11:31:18 2022 -0500

    camel-salesforce: JUnit 5.9.0 compatibility
    
    Private lifecycle methods no longer allowed
    https://github.com/junit-team/junit5/issues/2914
---
 .../camel/component/salesforce/BulkApiV2QueryJobIntegrationTest.java  | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/components/camel-salesforce/camel-salesforce-component/src/test/java/org/apache/camel/component/salesforce/BulkApiV2QueryJobIntegrationTest.java b/components/camel-salesforce/camel-salesforce-component/src/test/java/org/apache/camel/component/salesforce/BulkApiV2QueryJobIntegrationTest.java
index f0b8f13e305..e747e4121d9 100644
--- a/components/camel-salesforce/camel-salesforce-component/src/test/java/org/apache/camel/component/salesforce/BulkApiV2QueryJobIntegrationTest.java
+++ b/components/camel-salesforce/camel-salesforce-component/src/test/java/org/apache/camel/component/salesforce/BulkApiV2QueryJobIntegrationTest.java
@@ -51,12 +51,12 @@ public class BulkApiV2QueryJobIntegrationTest extends AbstractSalesforceTestBase
     private static final String LAST_NAME = "CamelBulkTest";
 
     @BeforeEach
-    private void setup() {
+    void setup() {
         createContacts();
     }
 
     @AfterEach
-    private void teardown() {
+    void teardown() {
         deleteContacts();
     }