|
@@ -256,7 +256,7 @@ describe( 'CKFinderCommand', () => {
|
|
|
const notification = editor.plugins.get( Notification );
|
|
const notification = editor.plugins.get( Notification );
|
|
|
|
|
|
|
|
notification.on( 'show:warning', ( evt, data ) => {
|
|
notification.on( 'show:warning', ( evt, data ) => {
|
|
|
- expect( data.message ).to.equal( 'Could not obtain resized image URL. Try different image or folder.' );
|
|
|
|
|
|
|
+ expect( data.message ).to.equal( 'Could not obtain resized image URL.' );
|
|
|
expect( data.title ).to.equal( 'Selecting resized image failed' );
|
|
expect( data.title ).to.equal( 'Selecting resized image failed' );
|
|
|
evt.stop();
|
|
evt.stop();
|
|
|
|
|
|
|
@@ -289,7 +289,7 @@ describe( 'CKFinderCommand', () => {
|
|
|
const notification = editor.plugins.get( Notification );
|
|
const notification = editor.plugins.get( Notification );
|
|
|
|
|
|
|
|
notification.on( 'show:warning', ( evt, data ) => {
|
|
notification.on( 'show:warning', ( evt, data ) => {
|
|
|
- expect( data.message ).to.equal( 'Could not insert image at current selection.' );
|
|
|
|
|
|
|
+ expect( data.message ).to.equal( 'Could not insert image at the current position.' );
|
|
|
expect( data.title ).to.equal( 'Inserting image failed' );
|
|
expect( data.title ).to.equal( 'Inserting image failed' );
|
|
|
evt.stop();
|
|
evt.stop();
|
|
|
|
|
|