瀏覽代碼

Fixed naming.

Maciej Bukowski 6 年之前
父節點
當前提交
ed4d6a5d98
共有 1 個文件被更改,包括 2 次插入2 次删除
  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 ) );