Browse Source

Fix table example in comments.

Maciej Gołaszewski 5 years ago
parent
commit
48cb9653a2
1 changed files with 3 additions and 1 deletions
  1. 3 1
      packages/ckeditor5-table/tests/tableutils.js

+ 3 - 1
packages/ckeditor5-table/tests/tableutils.js

@@ -1142,7 +1142,7 @@ describe( 'TableUtils', () => {
 				// +----+----+----+----+    +
 				// | 40 | 41 | 42 | 43 |    |
 				// +----+----+----+----+----+
-				// | 50 | 51 | 52 | 53 | 44 |
+				// | 50 | 51 | 52 | 53 | 54 |
 				// +----+----+----+----+----+
 				setData( model, modelTable( [
 					[ '00', { contents: '01', rowspan: 2 }, { contents: '02', rowspan: 3 }, { contents: '03', rowspan: 4 },
@@ -1163,6 +1163,8 @@ describe( 'TableUtils', () => {
 				// +----+----+----+----+    +
 				// | 40 | 41 | 42 | 43 |    |
 				// +----+----+----+----+----+
+				// | 50 | 51 | 52 | 53 | 54 |
+				// +----+----+----+----+----+
 				assertEqualMarkup( getData( model, { withoutSelection: true } ), modelTable( [
 					[ '00', { contents: '01', rowspan: 2 }, { contents: '02', rowspan: 2 }, { contents: '03', rowspan: 2 },
 						{ contents: '04', rowspan: 3 } ],