Explorar el Código

Test: Update tests description.

Maciej Gołaszewski hace 7 años
padre
commit
e334933e1b
Se han modificado 1 ficheros con 2 adiciones y 2 borrados
  1. 2 2
      packages/ckeditor5-table/tests/converters/table-post-fixer.js

+ 2 - 2
packages/ckeditor5-table/tests/converters/table-post-fixer.js

@@ -89,7 +89,7 @@ describe( 'Table post-fixer', () => {
 			] ) );
 		} );
 
-		it( 'should fix wrong rowspan attribute on table header', () => {
+		it( 'should fix the wrong rowspan attribute of a table cell inside the header', () => {
 			const parsed = parse( modelTable( [
 				[ { rowspan: 2, contents: '00' }, { rowspan: 3, contents: '01' }, '02' ],
 				[ { rowspan: 8, contents: '12' } ],
@@ -108,7 +108,7 @@ describe( 'Table post-fixer', () => {
 			], { headingRows: 2 } ) );
 		} );
 
-		it( 'should fix wrong rowspan attribute on table body', () => {
+		it( 'should fix the wrong rowspan attribute of a table cell inside the body', () => {
 			const parsed = parse( modelTable( [
 				[ '00', '01', '02' ],
 				[ { rowspan: 2, contents: '10' }, { rowspan: 3, contents: '11' }, '12' ],