mirror of
https://github.com/denoland/deno.git
synced 2025-09-28 13:14:48 +00:00
chore: upgrade to rust 1.58 (#13377)
This commit is contained in:
parent
903cb48fe9
commit
ad224f53c7
17 changed files with 29 additions and 46 deletions
|
@ -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) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue