Procházet zdrojové kódy

Tests: Slight change to a test.

Szymon Cofalik před 6 roky
rodič
revize
59c7a848f3
1 změnil soubory, kde provedl 2 přidání a 2 odebrání
  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[]' ]
 				] ) );
 			} );