From 7636cc7fe4ef084641c24468c52a48b83d61c66f Mon Sep 17 00:00:00 2001 From: raccmonteiro <3062698+raccmonteiro@users.noreply.github.com> Date: Tue, 15 Nov 2022 22:15:15 +0000 Subject: [PATCH] avoid test failure caused by locale thousand separator (#7142) Co-authored-by: Ricardo Monteiro --- src/tests/test_math.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tests/test_math.rs b/src/tests/test_math.rs index b93246c1e..2f2550282 100644 --- a/src/tests/test_math.rs +++ b/src/tests/test_math.rs @@ -107,5 +107,5 @@ fn precedence_of_or_groups() -> TestResult { #[test] fn test_filesize_op() -> TestResult { - run_test("-5kb + 4kb", "-1,000 B") + run_test("-5kb + 4.5kb", "-500 B") }