Browse Source

Tests: Changed names of two tests.

Szymon Cofalik 5 years ago
parent
commit
fac48b7acf
1 changed files with 2 additions and 2 deletions
  1. 2 2
      packages/ckeditor5-engine/tests/model/documentselection.js

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

@@ -579,7 +579,7 @@ describe( 'DocumentSelection', () => {
 				} );
 			} );
 
-			it( 'selection ranges change does not change selection markers - no markers', () => {
+			it( 'selection ranges change does not change selection markers (no markers)', () => {
 				const spy = sinon.spy();
 
 				model.document.selection.on( 'change:marker', spy );
@@ -591,7 +591,7 @@ describe( 'DocumentSelection', () => {
 				expect( spy.called ).to.be.false;
 			} );
 
-			it( 'selection ranges change does not change selection markers - same markers', () => {
+			it( 'selection ranges change does not change selection markers (same markers)', () => {
 				model.change( writer => {
 					writer.setSelection( writer.createPositionFromPath( root, [ 2, 2 ] ) );
 				} );