Skip to content

Commit

Permalink
fix: fix icon selection in summary report
Browse files Browse the repository at this point in the history
  • Loading branch information
vchirikov committed Oct 26, 2022
1 parent 9f58422 commit b1e9a1d
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 @@ -32,7 +32,7 @@ public TestRunSummaryGenerator(string serverUrl, string repository, string works

sb.Append("<details>")
.Append("<summary>")
.Append(failed >= 0 ? "πŸ“•" : skipped >= 0 ? "πŸ“™" : "πŸ“—")
.Append(failed > 0 ? "πŸ“•" : skipped > 0 ? "πŸ“™" : "πŸ“—")
.Append(" ")
.Append("<b>")
.Append(name);
Expand Down

0 comments on commit b1e9a1d

Please sign in to comment.