@@ -61,7 +61,7 @@ test('Create a blueprint with Filesystem customization', async ({
6161 await newPageAutomatic . close ( ) ;
6262
6363 await frame
64- . getByRole ( 'radio' , { name : 'Manually configure partitions ' } )
64+ . getByRole ( 'radio' , { name : 'Basic filesystem partitioning ' } )
6565 . click ( ) ;
6666 const [ newPageManual ] = await Promise . all ( [
6767 page . context ( ) . waitForEvent ( 'page' ) ,
@@ -96,7 +96,7 @@ test('Create a blueprint with Filesystem customization', async ({
9696 . fill ( '/usb' ) ;
9797 await frame
9898 . getByRole ( 'gridcell' , { name : '1' , exact : true } )
99- . getByPlaceholder ( 'File system ' )
99+ . getByPlaceholder ( 'minimum partition size ' )
100100 . fill ( '1000' ) ;
101101 await frame . getByRole ( 'button' , { name : 'GiB' } ) . nth ( 1 ) . click ( ) ;
102102 await frame . getByRole ( 'option' , { name : 'KiB' } ) . click ( ) ;
@@ -147,11 +147,11 @@ test('Create a blueprint with Filesystem customization', async ({
147147
148148 await frame
149149 . getByRole ( 'gridcell' , { name : '1000' , exact : true } )
150- . getByPlaceholder ( 'File system ' )
150+ . getByPlaceholder ( 'minimum partition size ' )
151151 . click ( ) ;
152152 await frame
153153 . getByRole ( 'gridcell' , { name : '1000' , exact : true } )
154- . getByPlaceholder ( 'File system ' )
154+ . getByPlaceholder ( 'minimum partition size ' )
155155 . fill ( '1024' ) ;
156156
157157 await frame . getByRole ( 'button' , { name : '/tmp' } ) . click ( ) ;
@@ -219,7 +219,7 @@ test('Create a blueprint with Filesystem customization', async ({
219219
220220 const size = frame
221221 . getByRole ( 'gridcell' , { name : '1' , exact : true } )
222- . getByPlaceholder ( 'File system ' ) ;
222+ . getByPlaceholder ( 'minimum partition size ' ) ;
223223 await expect ( size ) . toHaveValue ( '1' ) ;
224224
225225 const unitButton = frame . getByRole ( 'button' , { name : 'GiB' } ) . nth ( 1 ) ;
0 commit comments