Skip to content

Commit

Permalink
minor conditional grammar fix
Browse files Browse the repository at this point in the history
  • Loading branch information
erichiller committed Mar 4, 2024
1 parent 0954500 commit 28920da
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/PlotGitHubAction/TestResultAnalyzer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -234,9 +234,9 @@ private void writeMarkdownSummary( ) {
);
Log.Debug( $"methodName={methodName}, linkText={linkText}, url={url}" );
Sb.Append( "Test " + markdownInlineCodeSafe( failure.ShortTestName ) + " had exception at <br/>" );
Sb.Append( ( $"{markdownInlineCodeSafe( methodName )} in "
Sb.Append( ( $"{markdownInlineCodeSafe( methodName )}"
+ ( linkText is not null && url is not null
? sourceUrls.Add(
? " in " + sourceUrls.Add(
id: linkText,
url: url,
isCode: false
Expand Down

0 comments on commit 28920da

Please sign in to comment.