summaryrefslogtreecommitdiff
path: root/cli/tools/test.rs
diff options
context:
space:
mode:
Diffstat (limited to 'cli/tools/test.rs')
-rw-r--r--cli/tools/test.rs12
1 files changed, 2 insertions, 10 deletions
diff --git a/cli/tools/test.rs b/cli/tools/test.rs
index d991ef1ec..5e2d74ecf 100644
--- a/cli/tools/test.rs
+++ b/cli/tools/test.rs
@@ -267,11 +267,7 @@ impl PrettyTestReporter {
print!("{}", " ".repeat(description.level));
}
- println!(
- "{} {}",
- status,
- colors::gray(human_elapsed(elapsed.into())).to_string()
- );
+ println!("{} {}", status, colors::gray(human_elapsed(elapsed.into())));
if let Some(error_text) = result.error() {
for line in error_text.lines() {
@@ -357,11 +353,7 @@ impl TestReporter for PrettyTestReporter {
print!(" ");
}
- println!(
- "{} {}",
- status,
- colors::gray(human_elapsed(elapsed.into())).to_string()
- );
+ println!("{} {}", status, colors::gray(human_elapsed(elapsed.into())));
}
fn report_step_wait(&mut self, description: &TestStepDescription) {