From 5f93a73f463017b4cae873db3a5b632cda9908aa Mon Sep 17 00:00:00 2001 From: Fabio Erculiani Date: Sun, 3 Nov 2013 16:59:20 +0100 Subject: [PATCH] [tests] update bytes_into_human() test case --- lib/tests/tools.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/tests/tools.py b/lib/tests/tools.py index e02126fd2..a34c14b08 100644 --- a/lib/tests/tools.py +++ b/lib/tests/tools.py @@ -410,7 +410,7 @@ class ToolsTest(unittest.TestCase): def test_bytes_into_human(self): begin = 102400020 - end = '97.7MB' + end = '102.4MB' self.assertEqual(et.bytes_into_human(begin), end) """