From 65e6c84477afd602ad252f8fc4473b79d9959853 Mon Sep 17 00:00:00 2001 From: Pierre Goiffon Date: Wed, 13 Mar 2024 09:37:34 +0100 Subject: [PATCH] =?UTF-8?q?N=C2=B07302=20Fix=20SetupUtilsTest::testHumanRe?= =?UTF-8?q?adableSize?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- tests/php-unit-tests/unitary-tests/setup/SetupUtilsTest.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/php-unit-tests/unitary-tests/setup/SetupUtilsTest.php b/tests/php-unit-tests/unitary-tests/setup/SetupUtilsTest.php index 53b89f8f4..45708fcb7 100644 --- a/tests/php-unit-tests/unitary-tests/setup/SetupUtilsTest.php +++ b/tests/php-unit-tests/unitary-tests/setup/SetupUtilsTest.php @@ -93,7 +93,7 @@ class SetupUtilsTest extends ItopTestCase ], '10 kilobytes' => [ 10 * 1024, - '10.24 KB', + '10.24 kB', ], '10 megabytes' => [ 10 * 1024 * 1024, @@ -111,9 +111,9 @@ class SetupUtilsTest extends ItopTestCase 10 * 1024 * 1024 * 1024 * 1024 * 1024, '11.26 PB', ], - '10 heptabytes' => [ + '10 exabytes' => [ 10 * 1024 * 1024 * 1024 * 1024 * 1024 * 1024, - '11.53 HB', + '11.53 EB', ], ]; }