Răsfoiți Sursa

Tests: Slight change to a test.

Szymon Cofalik 6 ani în urmă
părinte
comite
59c7a848f3
1 a modificat fișierele cu 2 adăugiri și 2 ștergeri
  1. 2 2
      packages/ckeditor5-table/tests/tableediting.js

+ 2 - 2
packages/ckeditor5-table/tests/tableediting.js

@@ -296,7 +296,7 @@ describe( 'TableEditing', () => {
 
 			it( 'should not create another row and not move the caret if insertTableRowBelow command is disabled', () => {
 				setModelData( model, modelTable( [
-					[ '11', '[12]' ]
+					[ '11', '12[]' ]
 				] ) );
 
 				const insertTableRowBelowCommand = editor.commands.get( 'insertTableRowBelow' );
@@ -306,7 +306,7 @@ describe( 'TableEditing', () => {
 				editor.editing.view.document.fire( 'keydown', domEvtDataStub );
 
 				expect( formatTable( getModelData( model ) ) ).to.equal( formattedModelTable( [
-					[ '11', '[12]' ],
+					[ '11', '12[]' ]
 				] ) );
 			} );