소스 검색

Internal: Article preset was moved to the core. See ckeditor/ckeditor5-core#104.

Piotrek Koszuliński 8 년 전
부모
커밋
ff12f26d6e
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2 2
      packages/ckeditor5-block-quote/tests/manual/blockquote.js

+ 2 - 2
packages/ckeditor5-block-quote/tests/manual/blockquote.js

@@ -6,14 +6,14 @@
 /* global document, console, window */
 
 import ClassicEditor from '@ckeditor/ckeditor5-editor-classic/src/classiceditor';
-import ArticlePreset from '@ckeditor/ckeditor5-presets/src/article';
+import ArticlePluginSet from '@ckeditor/ckeditor5-core/tests/_utils/articlepluginset';
 
 import { getData } from '@ckeditor/ckeditor5-engine/src/dev-utils/model';
 
 ClassicEditor
 	.create( document.querySelector( '#editor' ), {
 		plugins: [
-			ArticlePreset
+			ArticlePluginSet
 		],
 		toolbar: [ 'headings', 'bold', 'italic', 'link', 'bulletedList', 'numberedList', 'blockQuote', 'undo', 'redo' ]
 	} )