Skip to content

Commit

Permalink
Fix for Issue #780
Browse files Browse the repository at this point in the history
  • Loading branch information
OsirisTerje committed Oct 23, 2020
1 parent 33ea912 commit 12e985b
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 12e985b

Please sign in to comment.