From 1b3ac5203970b2236a6da5a617b7678d5df051c9 Mon Sep 17 00:00:00 2001 From: Tyrrrz <1935960+Tyrrrz@users.noreply.github.com> Date: Fri, 19 May 2023 15:12:56 +0300 Subject: [PATCH] Fix broken indents --- GitHubActionsTestLogger/TestSummaryTemplate.cshtml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/GitHubActionsTestLogger/TestSummaryTemplate.cshtml b/GitHubActionsTestLogger/TestSummaryTemplate.cshtml index acd38ad..43a6e3c 100644 --- a/GitHubActionsTestLogger/TestSummaryTemplate.cshtml +++ b/GitHubActionsTestLogger/TestSummaryTemplate.cshtml @@ -108,7 +108,7 @@ TestOutcome.Passed => "🟩", TestOutcome.Failed => "🟥", _ => "🟨" - }; + }; // Use display name if it's different from the fully qualified name, // otherwise use the minimally qualified name. @@ -143,7 +143,7 @@ testResult.ErrorMessage, testResult.ErrorStackTrace, "```" - ); + ); } }