From 2535b8adef951096b0e81672682675f345234cb3 Mon Sep 17 00:00:00 2001 From: Lex Berezhny Date: Mon, 16 Aug 2021 14:54:17 -0400 Subject: [PATCH] fix disk space unit test --- tests/unit/blob/test_disk_space_manager.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/unit/blob/test_disk_space_manager.py b/tests/unit/blob/test_disk_space_manager.py index 35f11212c..32237ff09 100644 --- a/tests/unit/blob/test_disk_space_manager.py +++ b/tests/unit/blob/test_disk_space_manager.py @@ -25,5 +25,5 @@ class ConfigurationTests(unittest.TestCase): blob.write('0' * 1 * 1024 * 1024) self.assertEqual(10, dsm.space_used_mb) dsm.clean() - self.assertEqual(4, dsm.space_used_mb) + self.assertEqual(5, dsm.space_used_mb)