summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDezső Mészáros <meszarosdezsodev@gmail.com>2021-10-31 22:34:58 +0100
committerGitHub <noreply@github.com>2021-11-01 08:34:58 +1100
commitd080f1c9651b34a2887473bd468495b72ea8f8b4 (patch)
treea5af7f8d21649ceffbea3af41d8c59437a17645f
parent61e9beaa7bacd8d76140a1f87b77bb0f03167666 (diff)
chore(cli): fix typo in variable name (#12617)
-rw-r--r--cli/tools/test.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/cli/tools/test.rs b/cli/tools/test.rs
index c7ddf209f..0b5a51465 100644
--- a/cli/tools/test.rs
+++ b/cli/tools/test.rs
@@ -272,8 +272,8 @@ fn human_elapsed(elapsed: u128) -> String {
let seconds = elapsed / 1_000;
let minutes = seconds / 60;
- let seconds_reminder = seconds % 60;
- format!("({}m{}s)", minutes, seconds_reminder)
+ let seconds_remainder = seconds % 60;
+ format!("({}m{}s)", minutes, seconds_remainder)
}
impl TestReporter for PrettyTestReporter {