소스 검색

Tests: Fixed test.

Szymon Cofalik 8 년 전
부모
커밋
07b7f8a722
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2 2
      packages/ckeditor5-core/tests/editor/editor.js

+ 2 - 2
packages/ckeditor5-core/tests/editor/editor.js

@@ -213,8 +213,8 @@ describe( 'Editor', () => {
 			expect( () => {
 				// Would throw if any of this group won't exist.
 				editor.conversion.for( 'downcast' );
-				editor.conversion.for( 'downcastEditing' );
-				editor.conversion.for( 'downcastData' );
+				editor.conversion.for( 'editingDowncast' );
+				editor.conversion.for( 'dataDowncast' );
 				editor.conversion.for( 'upcast' );
 			} ).not.to.throw();
 		} );