Update dist/test-standalone-scripts/Assets/Player/UnityTestRunnerAction/TestRunCallback.cs

Co-authored-by: Webber Takken <webber.nl@gmail.com>
pull/219/head
Tim Cassell 2023-04-19 17:53:50 -04:00 committed by GitHub
parent 2d0b6ebf54
commit b96ed7315f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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);