瀏覽代碼

Tests: Adjustments.

Krzysztof Krztoń 6 年之前
父節點
當前提交
3c79ddacd1
共有 1 個文件被更改,包括 1 次插入2 次删除
  1. 1 2
      packages/ckeditor5-editor-inline/tests/inlineeditor.js

+ 1 - 2
packages/ckeditor5-editor-inline/tests/inlineeditor.js

@@ -197,7 +197,6 @@ describe( 'InlineEditor', () => {
 
 			class EventWatcher extends Plugin {
 				init() {
-					this.editor.plugins.on( 'ready', spy );
 					this.editor.ui.on( 'ready', spy );
 					this.editor.data.on( 'ready', spy );
 					this.editor.on( 'ready', spy );
@@ -210,7 +209,7 @@ describe( 'InlineEditor', () => {
 				} )
 				.then( newEditor => {
 					expect( fired ).to.deep.equal( [
-						'ready-plugincollection', 'ready-inlineeditorui', 'ready-datacontroller', 'ready-inlineeditor' ] );
+						'ready-inlineeditorui', 'ready-datacontroller', 'ready-inlineeditor' ] );
 
 					editor = newEditor;
 				} );