8
0
Просмотр исходного кода

Tests: Align tests code to changes in ckeditor5-engine selection post fixer.

Maciej Gołaszewski 7 лет назад
Родитель
Сommit
2849bb7f74
1 измененных файлов с 2 добавлено и 2 удалено
  1. 2 2
      packages/ckeditor5-table/tests/commands/inserttablecommand.js

+ 2 - 2
packages/ckeditor5-table/tests/commands/inserttablecommand.js

@@ -101,10 +101,10 @@ describe( 'InsertTableCommand', () => {
 				command.execute();
 				command.execute();
 
 
 				expect( getData( model ) ).to.equal(
 				expect( getData( model ) ).to.equal(
-					'<table>' +
+					'[]<table>' +
 					'<tableRow><tableCell></tableCell><tableCell></tableCell></tableRow>' +
 					'<tableRow><tableCell></tableCell><tableCell></tableCell></tableRow>' +
 					'<tableRow><tableCell></tableCell><tableCell></tableCell></tableRow>' +
 					'<tableRow><tableCell></tableCell><tableCell></tableCell></tableRow>' +
-					'</table>[]'
+					'</table>'
 				);
 				);
 			} );
 			} );