about summary refs log tree commit diff
path: root/library/test/src/formatters
diff options
context:
space:
mode:
authorAndrey Cherkashin <148123+andoriyu@users.noreply.github.com>2021-04-26 11:42:13 -0700
committerGitHub <noreply@github.com>2021-04-26 11:42:13 -0700
commit4b4d06ae829ef01de7cb4c0048db5c7577094ba5 (patch)
tree6dbc5f9706ff0e16e10b6a500bb4cf7b38d7e029 /library/test/src/formatters
parent38485a9e3445b1e926da293448fd056ca78cf156 (diff)
Update junit.rs
Diffstat (limited to 'library/test/src/formatters')
-rw-r--r--library/test/src/formatters/junit.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/library/test/src/formatters/junit.rs b/library/test/src/formatters/junit.rs
index 1d3c4ab604c..0ec336889de 100644
--- a/library/test/src/formatters/junit.rs
+++ b/library/test/src/formatters/junit.rs
@@ -50,7 +50,7 @@ impl<T: Write> OutputFormatter for JunitFormatter<T> {
         _stdout: &[u8],
         _state: &ConsoleTestState,
     ) -> io::Result<()> {
-        // Because testsuit node holds some of the information as attributes, we can't write it
+        // Because the testsuit node holds some of the information as attributes, we can't write it
         // until all of the tests has ran. Instead of writting every result as they come in, we add
         // them to a Vec and write them all at once when run is complete.
         let duration = exec_time.map(|t| t.0.clone()).unwrap_or_default();