From 6ba90410c8251b7556b3cacb15945cfcb424215d Mon Sep 17 00:00:00 2001 From: Craig Vermeer Date: Wed, 15 Feb 2017 11:17:03 -0500 Subject: [PATCH] Give the JUnit test suite a name for the Jenkins JUnit parser (#345) --- src/canopy/reporters.fs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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