瀏覽代碼

Tests: Changed some tests according to changes in engine.

Szymon Cofalik 8 年之前
父節點
當前提交
dd2529f46e
共有 1 個文件被更改,包括 4 次插入4 次删除
  1. 4 4
      packages/ckeditor5-undo/tests/undoengine-integration.js

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

@@ -402,7 +402,7 @@ describe( 'UndoEngine integration', () => {
 			output( '<p>12345</p><p>678[]</p>' );
 
 			editor.execute( 'redo' );
-			output( '<p>1234567[]8</p>' );
+			output( '<p>12345678[]</p>' );
 
 			redoDisabled();
 		} );
@@ -508,7 +508,7 @@ describe( 'UndoEngine integration', () => {
 			output( '<p>12345</p><p>678[]</p>' );
 
 			editor.execute( 'redo' );
-			output( '<p>1234567[]8</p>' );
+			output( '<p>12345678[]</p>' );
 
 			redoDisabled();
 		} );
@@ -615,7 +615,7 @@ describe( 'UndoEngine integration', () => {
 			output( '<p>1234[]</p><p>58</p>' );
 
 			editor.execute( 'redo' );
-			output( '<p>12345[]8</p>' );
+			output( '<p>123458[]</p>' );
 
 			redoDisabled();
 		} );
@@ -669,7 +669,7 @@ describe( 'UndoEngine integration', () => {
 			output( '<p>12345[]</p><p>67xy8</p>' );
 
 			editor.execute( 'redo' );
-			output( '<p>1234567[]xy8</p>' );
+			output( '<p>1234567xy8[]</p>' );
 
 			redoDisabled();
 		} );