diff --git a/packages/block-editor/src/components/block-switcher/index.js b/packages/block-editor/src/components/block-switcher/index.js index 2d230c317612cc..371975e53d088e 100644 --- a/packages/block-editor/src/components/block-switcher/index.js +++ b/packages/block-editor/src/components/block-switcher/index.js @@ -95,7 +95,7 @@ export class BlockSwitcher extends Component { }; const label = ( 1 === blocks.length ? - __( 'Change block type' ) : + __( 'Change block type or style' ) : sprintf( _n( 'Change type of %d block', diff --git a/packages/e2e-tests/specs/style-variation.test.js b/packages/e2e-tests/specs/style-variation.test.js index db4c0d98fa5cbb..7b073fe7b3f26d 100644 --- a/packages/e2e-tests/specs/style-variation.test.js +++ b/packages/e2e-tests/specs/style-variation.test.js @@ -18,7 +18,7 @@ describe( 'adding blocks', () => { await insertBlock( 'Quote' ); await page.keyboard.type( 'Quote content' ); - await clickBlockToolbarButton( 'Change block type' ); + await clickBlockToolbarButton( 'Change block type or style' ); const styleVariations = await page.$$( '.block-editor-block-styles__item' ); await styleVariations[ 1 ].click();