Преглед на файлове

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

Maciej Gołaszewski преди 7 години
родител
ревизия
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();
 
 				expect( getData( model ) ).to.equal(
-					'<table>' +
+					'[]<table>' +
 					'<tableRow><tableCell></tableCell><tableCell></tableCell></tableRow>' +
 					'<tableRow><tableCell></tableCell><tableCell></tableCell></tableRow>' +
-					'</table>[]'
+					'</table>'
 				);
 			} );