Browse Source

Tests: Fixed test.

Szymon Cofalik 8 years ago
parent
commit
07b7f8a722
1 changed files with 2 additions and 2 deletions
  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();
 		} );