8
0
Maciej Bukowski 6 gadi atpakaļ
vecāks
revīzija
ed4d6a5d98
1 mainītis faili ar 2 papildinājumiem un 2 dzēšanām
  1. 2 2
      packages/ckeditor5-watchdog/tests/watchdog.js

+ 2 - 2
packages/ckeditor5-watchdog/tests/watchdog.js

@@ -341,7 +341,7 @@ describe( 'Watchdog', () => {
 			} );
 		} );
 
-		it( 'editor should be restarted maximum 3 times by default', () => {
+		it( 'editor should be restarted up to 3 times by default', () => {
 			const watchdog = new Watchdog();
 
 			watchdog.setCreator( ( el, config ) => FakeEditor.create( el, config ) );
@@ -377,7 +377,7 @@ describe( 'Watchdog', () => {
 			} );
 		} );
 
-		it( 'editor should be restarted maximum of `crashNumberLimit` if the option is set', () => {
+		it( 'editor should be restarted up to `crashNumberLimit` times if the option is set', () => {
 			const watchdog = new Watchdog( { crashNumberLimit: 2 } );
 
 			watchdog.setCreator( ( el, config ) => FakeEditor.create( el, config ) );