From dc5442786853eb0b332f129641d1c37a553fba9b Mon Sep 17 00:00:00 2001 From: Katerina Koukiou Date: Fri, 20 Sep 2024 10:10:23 +0200 Subject: [PATCH] tests: remove support for the MD linear RAID level See https://github.com/storaged-project/blivet/pull/1236 --- .../modules/storage/partitioning/test_module_scheduler.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/unit_tests/pyanaconda_tests/modules/storage/partitioning/test_module_scheduler.py b/tests/unit_tests/pyanaconda_tests/modules/storage/partitioning/test_module_scheduler.py index f761fb1ce90..37cbc82b1e2 100644 --- a/tests/unit_tests/pyanaconda_tests/modules/storage/partitioning/test_module_scheduler.py +++ b/tests/unit_tests/pyanaconda_tests/modules/storage/partitioning/test_module_scheduler.py @@ -169,7 +169,7 @@ def test_get_default_file_system(self): def test_get_supported_raid_levels(self): """Test GetSupportedRaidLevels.""" assert self.interface.GetSupportedRaidLevels(DEVICE_TYPE_MD) == \ - ['linear', 'raid0', 'raid1', 'raid10', 'raid4', 'raid5', 'raid6'] + ['raid0', 'raid1', 'raid10', 'raid4', 'raid5', 'raid6'] @patch('pyanaconda.modules.storage.partitioning.interactive.utils.get_format') @patch('pyanaconda.modules.storage.partitioning.interactive.utils.platform', new_callable=EFI)