]> sourceware.org Git - lvm2.git/commitdiff
lvmdbustest.py: Remove 2 TODOs
authorTony Asleson <tasleson@redhat.com>
Thu, 3 Oct 2019 22:01:27 +0000 (17:01 -0500)
committerTony Asleson <tasleson@redhat.com>
Wed, 30 Oct 2019 15:38:40 +0000 (10:38 -0500)
This issue has been resolved, sizes > 2**32-1 not supported.

test/dbus/lvmdbustest.py

index 92e4331321e0f740e1bae6b6f347ba00e87377cc..d703a0a16e7f038df0cb19b15c142bf0f39ba33b 100755 (executable)
@@ -1181,9 +1181,6 @@ class TestDbusService(unittest.TestCase):
 
        def test_vg_max_pv(self):
                vg = self._vg_create().Vg
-
-               # BZ: https://bugzilla.redhat.com/show_bug.cgi?id=1280496
-               # TODO: Add a test back for larger values here when bug is resolved
                for p in [0, 1, 10, 100, 100, 1024, 2 ** 32 - 1]:
                        rc = self.handle_return(
                                vg.MaxPvSet(
@@ -1196,9 +1193,6 @@ class TestDbusService(unittest.TestCase):
 
        def test_vg_max_lv(self):
                vg = self._vg_create().Vg
-
-               # BZ: https://bugzilla.redhat.com/show_bug.cgi?id=1280496
-               # TODO: Add a test back for larger values here when bug is resolved
                for p in [0, 1, 10, 100, 100, 1024, 2 ** 32 - 1]:
                        rc = self.handle_return(
                                vg.MaxLvSet(
This page took 0.690596 seconds and 5 git commands to generate.