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 cefa2019aec5..f9a57834860e 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)