Browse Source

Fixing after changes introduced in t/ckeditor5-engine/1236

Szymon Cofalik 7 years ago
parent
commit
e45add3822
1 changed files with 2 additions and 2 deletions
  1. 2 2
      packages/ckeditor5-editor-inline/tests/inlineeditor.js

+ 2 - 2
packages/ckeditor5-editor-inline/tests/inlineeditor.js

@@ -249,8 +249,8 @@ describe( 'InlineEditor', () => {
 					editor.conversion.for( 'toData' ).add( downcastElementToElement( { model: 'heading', view: 'heading' } ) );
 					editor.conversion.for( 'upcast' ).add( upcastElementToElement( { model: 'heading', view: 'heading' } ) );
 					editor.conversion.for( 'toEditing' ).add( downcastElementToElement( {
-						model: 'heading-editing-representation',
-						view: 'heading'
+						model: 'heading',
+						view: 'heading-editing-representation'
 					} ) );
 				} );
 		} );