From b96ed7315f666b2284357ce896a0f2c26665946d Mon Sep 17 00:00:00 2001 From: Tim Cassell <35501420+timcassell@users.noreply.github.com> Date: Wed, 19 Apr 2023 17:53:50 -0400 Subject: [PATCH] Update dist/test-standalone-scripts/Assets/Player/UnityTestRunnerAction/TestRunCallback.cs Co-authored-by: Webber Takken --- .../Assets/Player/UnityTestRunnerAction/TestRunCallback.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dist/test-standalone-scripts/Assets/Player/UnityTestRunnerAction/TestRunCallback.cs b/dist/test-standalone-scripts/Assets/Player/UnityTestRunnerAction/TestRunCallback.cs index 1ffcd44..e8e861f 100644 --- a/dist/test-standalone-scripts/Assets/Player/UnityTestRunnerAction/TestRunCallback.cs +++ b/dist/test-standalone-scripts/Assets/Player/UnityTestRunnerAction/TestRunCallback.cs @@ -52,7 +52,7 @@ namespace UnityTestRunnerAction string testResultsPath = commandLineArgs[Array.IndexOf(commandLineArgs, "-testResults") + 1]; using (var writer = XmlWriter.Create(testResultsPath, new XmlWriterSettings() { Indent = true })) { - // We have to manually add the outer test-run node since testResults.ToXml doesn't include it... + // Manually add the outer test-run node, because testResults.ToXml doesn't include it. var testRunNode = new TNode(k_TestRunNode);