We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 7712dfd + 088474a commit 95efb2bCopy full SHA for 95efb2b
library/test/src/formatters/junit.rs
@@ -33,7 +33,6 @@ impl<T: Write> OutputFormatter for JunitFormatter<T> {
33
_shuffle_seed: Option<u64>,
34
) -> io::Result<()> {
35
// We write xml header on run start
36
- self.out.write_all(b"\n")?;
37
self.write_message("<?xml version=\"1.0\" encoding=\"UTF-8\"?>")
38
}
39
@@ -138,7 +137,7 @@ impl<T: Write> OutputFormatter for JunitFormatter<T> {
138
137
self.write_message("</testsuite>")?;
139
self.write_message("</testsuites>")?;
140
141
- self.out.write_all(b"\n\n")?;
+ self.out.write_all(b"\n")?;
142
143
Ok(state.failed == 0)
144
0 commit comments