8
0
فهرست منبع

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>'
 				);
 			} );