From 9fed0922833fb4bfc359e44f6016eb638d7b8071 Mon Sep 17 00:00:00 2001 From: tw93 Date: Sat, 28 Feb 2026 11:30:17 +0800 Subject: [PATCH] test: update bytes_to_human test inputs to use Base-10 values --- tests/core_common.bats | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/core_common.bats b/tests/core_common.bats index 10eee55..69d0a6f 100644 --- a/tests/core_common.bats +++ b/tests/core_common.bats @@ -102,9 +102,9 @@ setup() { HOME="$HOME" bash --noprofile --norc << 'EOF' source "$PROJECT_ROOT/lib/core/common.sh" bytes_to_human 512 -bytes_to_human 2048 -bytes_to_human $((5 * 1024 * 1024)) -bytes_to_human $((3 * 1024 * 1024 * 1024)) +bytes_to_human 2000 +bytes_to_human 5000000 +bytes_to_human 3000000000 EOF )"