Skip to content

Commit 752dcb0

Browse files
committed
Wizard: Remove partitioning mode when switching partitioning
This removes setting the mode to 'raw' for now. The default mode is 'auto-lvm', which might need its own radio. Will be addressed in a follow up.
1 parent e592065 commit 752dcb0

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

playwright/Customizations/Disk.spec.ts

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -50,11 +50,12 @@ test('Create a blueprint with Disk customization', async ({
5050
.getByRole('radio', { name: 'Advanced disk partitioning' })
5151
.click();
5252

53-
const rawPartitioningRadio = frame.getByRole('radio', {
54-
name: /raw partitioning/i,
55-
});
56-
await expect(rawPartitioningRadio).toBeVisible();
57-
await expect(rawPartitioningRadio).toBeChecked();
53+
// Temporarily disabled - need to confirm if `auto-lvm` radio should be added
54+
// const rawPartitioningRadio = frame.getByRole('radio', {
55+
// name: /raw partitioning/i,
56+
// });
57+
// await expect(rawPartitioningRadio).toBeVisible();
58+
// await expect(rawPartitioningRadio).toBeChecked();
5859

5960
await expect(frame.getByRole('button', { name: '/' })).toBeDisabled();
6061
await expect(

src/store/wizardSlice.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -751,7 +751,6 @@ export const wizardSlice = createSlice({
751751
type: 'plain',
752752
},
753753
];
754-
state.partitioning_mode = 'raw';
755754
break;
756755
}
757756
}

0 commit comments

Comments
 (0)