Skip to content

Commit

Permalink
Adding recommended fix issue
Browse files Browse the repository at this point in the history
  • Loading branch information
satyamchaurasia committed Jul 28, 2024
1 parent 46e4e5e commit ac1184f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/test/java/com/checkmarx/jira/JiraTestUtils.java
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@ public String getIssueVulnerabilityStatus(String projectKey) {
@Override
public String getIssueRecommendedFixLink(String projectKey) {
Issue issue = getFirstIssue(projectKey);
return Objects.requireNonNull(issue.getDescription()).split(System.lineSeparator())[21];
return Objects.requireNonNull(issue.getDescription()).split(System.lineSeparator())[19];
}

@Override
Expand Down

0 comments on commit ac1184f

Please sign in to comment.