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

Changed name of the test cases.

Kamil Piechaczek преди 7 години
родител
ревизия
47b49aa97d
променени са 1 файла, в които са добавени 2 реда и са изтрити 2 реда
  1. 2 2
      packages/ckeditor5-engine/tests/model/schema.js

+ 2 - 2
packages/ckeditor5-engine/tests/model/schema.js

@@ -934,7 +934,7 @@ describe( 'Schema', () => {
 			expect( schema.getLimitElement( doc.selection ) ).to.equal( root );
 		} );
 
-		it( 'works fine with multi-range selections if the first one has the root element as a limit element', () => {
+		it( 'works fine with multi-range selections if the first range has the root element as a limit element', () => {
 			setData(
 				model,
 				'<image>' +
@@ -950,7 +950,7 @@ describe( 'Schema', () => {
 			expect( schema.getLimitElement( doc.selection ) ).to.equal( root );
 		} );
 
-		it( 'works fine with multi-range selections if the second one has the root element as a limit element', () => {
+		it( 'works fine with multi-range selections if the last range has the root element as a limit element', () => {
 			setData(
 				model,
 				'<paragraph>Paragraph item 1</paragraph>' +