浏览代码

Enlarged the tests coverage for plugins that don't have any dependency defined.

fredck 10 年之前
父节点
当前提交
53290538d0
共有 1 个文件被更改,包括 2 次插入2 次删除
  1. 2 2
      packages/ckeditor5-engine/tests/plugincollection/plugincollection.js

+ 2 - 2
packages/ckeditor5-engine/tests/plugincollection/plugincollection.js

@@ -23,11 +23,11 @@ before( function() {
 
 // Create fake plugins that will be used on tests.
 
-CKEDITOR.define( 'plugin!A', [ 'plugin' ], function() {
+CKEDITOR.define( 'plugin!A', function() {
 	return PluginA;
 } );
 
-CKEDITOR.define( 'plugin!B', [ 'plugin' ], function() {
+CKEDITOR.define( 'plugin!B', function() {
 	return PluginB;
 } );