Skip to content

Commit

Permalink
fix: fix url generation in test result summary
Browse files Browse the repository at this point in the history
  • Loading branch information
vchirikov committed Oct 26, 2022
1 parent 5f8b296 commit 9f58422
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/dotnet/Logger/TestRunSummaryGenerator.cs
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ public TestRunSummaryGenerator(string serverUrl, string repository, string works
.Append("Fail: ")
.Append(string.IsNullOrWhiteSpace(url) ? "**" : "[**")
.Append(testResult.TestCase.DisplayName)
.AppendLine(string.IsNullOrWhiteSpace(url) ? "**" : $"]**({url})")
.AppendLine(string.IsNullOrWhiteSpace(url) ? "**" : $"**]({url})")
.AppendLine("```yml")
.AppendLine(testResult.ErrorMessage)
.AppendLine(testResult.ErrorStackTrace)
Expand Down

0 comments on commit 9f58422

Please sign in to comment.