From 73612cbab2eff5f08339a369f3860cb4e89114fb Mon Sep 17 00:00:00 2001 From: Joen Asmussen Date: Tue, 23 Jan 2018 10:28:59 +0100 Subject: [PATCH] Adjust test to not look for the icon The icon is now an SVG passed on --- editor/components/block-mover/test/index.js | 2 -- 1 file changed, 2 deletions(-) diff --git a/editor/components/block-mover/test/index.js b/editor/components/block-mover/test/index.js index f6f785b24b7e14..e3aded6ce6e535 100644 --- a/editor/components/block-mover/test/index.js +++ b/editor/components/block-mover/test/index.js @@ -32,14 +32,12 @@ describe( 'BlockMover', () => { expect( moveUp.props() ).toMatchObject( { className: 'editor-block-mover__control', onClick: undefined, - icon: 'arrow-up-alt2', label: 'Move 2 blocks from position 1 up by one place', 'aria-disabled': undefined, } ); expect( moveDown.props() ).toMatchObject( { className: 'editor-block-mover__control', onClick: undefined, - icon: 'arrow-down-alt2', label: 'Move 2 blocks from position 1 down by one place', 'aria-disabled': undefined, } );