Skip to content

Commit

Permalink
Merge pull request #794 from nunit/Issue780
Browse files Browse the repository at this point in the history
Fix for Issue #780
  • Loading branch information
OsirisTerje authored Oct 24, 2020
2 parents 5354334 + 24d00c6 commit 8905a9f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/NUnitTestAdapter/NUnitEngine/NUnitEngineAdapter.cs
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ public void GenerateTestOutput(NUnitResults testResults, string assemblyPath, st
// Following null argument should work for nunit3 format. Empty array is OK as well.
// If you decide to handle other formats in the runsettings, it needs more work.
var resultWriter = resultService.GetResultWriter("nunit3", null);
resultWriter.WriteResultFile(testResults.TopNode, path);
resultWriter.WriteResultFile(testResults.FullTopNode, path);
logger.Info($" Test results written to {path}");
}
}
Expand Down

0 comments on commit 8905a9f

Please sign in to comment.