From 560229178cec9daff0c0f4fe16f59013d566f1d5 Mon Sep 17 00:00:00 2001 From: Tony Asleson Date: Fri, 4 Nov 2016 13:16:24 -0500 Subject: [PATCH] lvmdbustest.py: Remove raid4 use Looks like this isn't support across versions. Need to add functionality to service to return the supported segment types, so we only use the supported ones. --- test/dbus/lvmdbustest.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/dbus/lvmdbustest.py b/test/dbus/lvmdbustest.py index e5b8243ed..7e3a877f8 100755 --- a/test/dbus/lvmdbustest.py +++ b/test/dbus/lvmdbustest.py @@ -496,7 +496,7 @@ class TestDbusService(unittest.TestCase): vg = self._vg_create(pv_paths).Vg self._test_lv_create( - vg.LvCreateRaid, (lv_n(), 'raid4', mib(16), 2, 8, g_tmo, {}), vg) + vg.LvCreateRaid, (lv_n(), 'raid5', mib(16), 2, 8, g_tmo, {}), vg) def _create_lv(self, thinpool=False, size=None, vg=None):