Explorar o código

Tests: Slight change to a test.

Szymon Cofalik %!s(int64=6) %!d(string=hai) anos
pai
achega
59c7a848f3
Modificáronse 1 ficheiros con 2 adicións e 2 borrados
  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[]' ]
 				] ) );
 			} );