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

jamesnetherton pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel-quarkus.git


The following commit(s) were added to refs/heads/main by this push:
     new 1b2a507  Fix typo in JIRA relationship name
1b2a507 is described below

commit 1b2a507a0c04f149547b0d32dc8d908dd96a0656
Author: mmuzikar <[email protected]>
AuthorDate: Tue Jun 15 13:49:43 2021 +0200

    Fix typo in JIRA relationship name
---
 .../java/org/apache/camel/quarkus/component/jira/it/JiraResource.java   | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/integration-tests/jira/src/main/java/org/apache/camel/quarkus/component/jira/it/JiraResource.java
 
b/integration-tests/jira/src/main/java/org/apache/camel/quarkus/component/jira/it/JiraResource.java
index 75e2e74..46db97a 100644
--- 
a/integration-tests/jira/src/main/java/org/apache/camel/quarkus/component/jira/it/JiraResource.java
+++ 
b/integration-tests/jira/src/main/java/org/apache/camel/quarkus/component/jira/it/JiraResource.java
@@ -194,7 +194,7 @@ public class JiraResource {
         Map<String, Object> headers = new HashMap<>();
         headers.put(PARENT_ISSUE_KEY, parentKey);
         headers.put(CHILD_ISSUE_KEY, childKey);
-        headers.put(LINK_TYPE, "Relates");
+        headers.put(LINK_TYPE, "Related");
 
         producerTemplate.requestBodyAndHeaders("jira:addIssueLink", null, 
headers);
 

Reply via email to