mirror of
https://github.com/denoland/deno.git
synced 2025-02-01 20:25:12 -05:00
chore(cli): fix typo in variable name (#12617)
This commit is contained in:
parent
61e9beaa7b
commit
d080f1c965
1 changed files with 2 additions and 2 deletions
|
@ -272,8 +272,8 @@ fn human_elapsed(elapsed: u128) -> String {
|
||||||
|
|
||||||
let seconds = elapsed / 1_000;
|
let seconds = elapsed / 1_000;
|
||||||
let minutes = seconds / 60;
|
let minutes = seconds / 60;
|
||||||
let seconds_reminder = seconds % 60;
|
let seconds_remainder = seconds % 60;
|
||||||
format!("({}m{}s)", minutes, seconds_reminder)
|
format!("({}m{}s)", minutes, seconds_remainder)
|
||||||
}
|
}
|
||||||
|
|
||||||
impl TestReporter for PrettyTestReporter {
|
impl TestReporter for PrettyTestReporter {
|
||||||
|
|
Loading…
Add table
Reference in a new issue