Explorar el Código

Internal: DataController#deleteContent node merging is now a default behaviour.

Szymon Kupś hace 8 años
padre
commit
489bee23ab
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      packages/ckeditor5-undo/tests/undoengine-integration.js

+ 1 - 1
packages/ckeditor5-undo/tests/undoengine-integration.js

@@ -302,7 +302,7 @@ describe( 'UndoEngine integration', () => {
 			it( 'deleteContent between two nodes', () => {
 				input( '<p>fo[o</p><p>b]ar</p>' );
 
-				editor.data.deleteContent( doc.selection, doc.batch(), { merge: true } );
+				editor.data.deleteContent( doc.selection, doc.batch() );
 				output( '<p>fo[]ar</p>' );
 
 				editor.execute( 'undo' );