Skip to content
This repository has been archived by the owner on Jun 26, 2020. It is now read-only.

Commit

Permalink
Tests: Fixed the iconset test broken due to changes in the Locale man…
Browse files Browse the repository at this point in the history
…agement.
  • Loading branch information
oleq committed Sep 9, 2019
1 parent 9f8876d commit 2f6f7da
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tests/manual/iconset.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@

import ButtonView from '@ckeditor/ckeditor5-ui/src/button/buttonview';
import ToolbarView from '@ckeditor/ckeditor5-ui/src/toolbar/toolbarview';
import Locale from '@ckeditor/ckeditor5-utils/src/locale';

import alignLeft from '@ckeditor/ckeditor5-alignment/theme/icons/align-left.svg';
import alignCenter from '@ckeditor/ckeditor5-alignment/theme/icons/align-center.svg';
Expand Down Expand Up @@ -118,7 +119,7 @@ const icons = {
undo, redo
};

const toolbar = new ToolbarView();
const toolbar = new ToolbarView( new Locale() );

for ( const i in icons ) {
const button = new ButtonView();
Expand Down

0 comments on commit 2f6f7da

Please sign in to comment.