diff --git a/src/canopy/reporters.fs b/src/canopy/reporters.fs index dd674e25..74511f45 100644 --- a/src/canopy/reporters.fs +++ b/src/canopy/reporters.fs @@ -437,7 +437,7 @@ type JUnitReporter(resultFilePath:string) = let testTimeSum = testTimes |> Seq.sumBy snd let allTestsXml = String.Join(String.Empty, Seq.concat [passedTestsXml; failedTestsXml]) let xml = - sprintf "%s" testCount testTimeSum allTestsXml + sprintf "%s" testCount testTimeSum allTestsXml let resultFile = System.IO.FileInfo(resultFilePath) resultFile.Directory.Create() consoleReporter.write <| sprintf "Saving results to %s" resultFilePath