Browse Source

Fixes invalid dependencies.

Kamil Piechaczek 8 years ago
parent
commit
6e4ee5687b
1 changed files with 2 additions and 2 deletions
  1. 2 2
      packages/ckeditor5-core/tests/manual/formsubmit.js

+ 2 - 2
packages/ckeditor5-core/tests/manual/formsubmit.js

@@ -6,14 +6,14 @@
 /* globals console, window, document */
 /* globals console, window, document */
 
 
 import ClassicEditor from '@ckeditor/ckeditor5-editor-classic/src/classiceditor';
 import ClassicEditor from '@ckeditor/ckeditor5-editor-classic/src/classiceditor';
-import ArticlePreset from '@ckeditor/ckeditor5-presets/src/article';
+import ArticlePluginSet from '../_utils/articlepluginset';
 
 
 // Replace original submit method to prevent page reload.
 // Replace original submit method to prevent page reload.
 document.getElementById( 'form' ).submit = () => {};
 document.getElementById( 'form' ).submit = () => {};
 
 
 ClassicEditor
 ClassicEditor
 	.create( document.querySelector( '#editor' ), {
 	.create( document.querySelector( '#editor' ), {
-		plugins: [ ArticlePreset ],
+		plugins: [ ArticlePluginSet ],
 		toolbar: [ 'bold', 'italic', 'undo', 'redo' ],
 		toolbar: [ 'bold', 'italic', 'undo', 'redo' ],
 	} )
 	} )
 	.then( editor => {
 	.then( editor => {