From d080f1c9651b34a2887473bd468495b72ea8f8b4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dezs=C5=91=20M=C3=A9sz=C3=A1ros?= Date: Sun, 31 Oct 2021 22:34:58 +0100 Subject: [PATCH] chore(cli): fix typo in variable name (#12617) --- cli/tools/test.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cli/tools/test.rs b/cli/tools/test.rs index c7ddf209f1..0b5a514651 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 {