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 2020/07/03 15:46:36 UTC

[camel] branch master updated: CAMEL-15272: Fixed CS

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

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


The following commit(s) were added to refs/heads/master by this push:
     new 4ccd0b7  CAMEL-15272: Fixed CS
4ccd0b7 is described below

commit 4ccd0b77579ec0aca9458e63797cb91eb987d07e
Author: Claus Ibsen <cl...@gmail.com>
AuthorDate: Fri Jul 3 17:45:50 2020 +0200

    CAMEL-15272: Fixed CS
---
 .../camel/component/jira/producer/TransitionIssueProducerTest.java      | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/components/camel-jira/src/test/java/org/apache/camel/component/jira/producer/TransitionIssueProducerTest.java b/components/camel-jira/src/test/java/org/apache/camel/component/jira/producer/TransitionIssueProducerTest.java
index d55f338..1a12df9 100644
--- a/components/camel-jira/src/test/java/org/apache/camel/component/jira/producer/TransitionIssueProducerTest.java
+++ b/components/camel-jira/src/test/java/org/apache/camel/component/jira/producer/TransitionIssueProducerTest.java
@@ -88,7 +88,7 @@ public class TransitionIssueProducerTest extends CamelTestSupport {
         when(issueRestClient.transition(any(Issue.class), any(TransitionInput.class))).then(inv -> {
             URI doneStatusUri = URI.create(TEST_JIRA_URL + "/rest/api/2/status/1");
             URI doneResolutionUri = URI.create(TEST_JIRA_URL + "/rest/api/2/resolution/1");
-            Status status = new Status(doneStatusUri, 1L, "Done", "Done",null, null);
+            Status status = new Status(doneStatusUri, 1L, "Done", "Done", null, null);
             Resolution resolution = new Resolution(doneResolutionUri, 1L, "Resolution", "Resolution");
             issue = transitionIssueDone(issue, status, resolution);
             return null;