Skip to content

Commit

Permalink
Fix links for unit tests with "-"
Browse files Browse the repository at this point in the history
  • Loading branch information
MaXal committed Dec 2, 2024
1 parent b364298 commit b34f657
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/server/meta/youtrack.go
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,7 @@ func (f fleetPerfTestCollector) checkArtifact(artifactName string) bool {
type perfUnitTestCollector struct{}

func (f perfUnitTestCollector) getArtifactsPath(params UploadAttachmentsToIssueRequest) string {
return strings.ReplaceAll(params.AffectedTest, "_", "-")
return strings.ReplaceAll(params.AffectedTest, "-", "_")
}

func (f perfUnitTestCollector) checkArtifact(artifactName string) bool {
Expand Down

0 comments on commit b34f657

Please sign in to comment.