From 26f78a621e99298f0c84f3e08851a5e6c473ecaf Mon Sep 17 00:00:00 2001 From: mulhern Date: Mon, 25 Sep 2023 22:14:39 -0400 Subject: [PATCH] Make filesystem size specified smaller Instead of 8 TiB use 1/2 TiB. A size of 8 TiB is causing a test failure. See: https://github.com/stratis-storage/project/issues/664 Signed-off-by: mulhern --- stratisd_cert.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stratisd_cert.py b/stratisd_cert.py index 01eb679..6ae733a 100644 --- a/stratisd_cert.py +++ b/stratisd_cert.py @@ -796,7 +796,7 @@ def test_filesystem_create_specified_size(self): fs_name = fs_n() self._unittest_command( - StratisDbus.fs_create(pool_path, fs_name, fs_size="8796093022208"), + StratisDbus.fs_create(pool_path, fs_name, fs_size="549755813888"), dbus.UInt16(0), )