Skip to content

Commit

Permalink
Fix the fixversion format in the csv export test
Browse files Browse the repository at this point in the history
  • Loading branch information
marko-bekhta committed Oct 18, 2024
1 parent 28613aa commit d05a0dd
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ private List<String> formatLabels(JiraIssue issue) {

if (issue.fields.fixVersions != null) {
for (JiraSimpleObject fixVersion : issue.fields.fixVersions) {
labels.add("Fix version: %s".formatted(fixVersion.name));
labels.add("Fix version: %s".formatted(fixVersion.name).replace(' ', '_'));
}
}

Expand Down

0 comments on commit d05a0dd

Please sign in to comment.