diff --git a/src/classiceditoruiview.js b/src/classiceditoruiview.js index bc250d9..d9826ff 100644 --- a/src/classiceditoruiview.js +++ b/src/classiceditoruiview.js @@ -46,12 +46,6 @@ export default class ClassicEditorUIView extends BoxedEditorUIView { */ this.toolbar = new ToolbarView( locale ); - this.toolbar.extendTemplate( { - attributes: { - class: 'ck-editor-toolbar' - } - } ); - /** * Editable UI view. * diff --git a/tests/classiceditoruiview.js b/tests/classiceditoruiview.js index 7f96357..b3e990d 100644 --- a/tests/classiceditoruiview.js +++ b/tests/classiceditoruiview.js @@ -44,10 +44,6 @@ describe( 'ClassicEditorUIView', () => { expect( view.toolbar ).to.be.instanceof( ToolbarView ); } ); - it( 'is given the right CSS class', () => { - expect( view.toolbar.element.classList.contains( 'ck-editor-toolbar' ) ).to.be.true; - } ); - it( 'is given a locate object', () => { expect( view.toolbar.locale ).to.equal( locale ); } );