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

Tests: Aligned after adding selection post-fixer.

Piotrek Koszuliński 7 лет назад
Родитель
Сommit
c7334b1875
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();
 
 				expect( getData( model ) ).to.equal(
-					'<table>' +
+					'[<table>' +
 					'<tableRow><tableCell></tableCell><tableCell></tableCell></tableRow>' +
 					'<tableRow><tableCell></tableCell><tableCell></tableCell></tableRow>' +
-					'</table>[]'
+					'</table>]'
 				);
 			} );