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

Commit

Permalink
Merge pull request #100 from ckeditor/t/ckeditor5-alignment/16
Browse files Browse the repository at this point in the history
Tests: Aligned code to the changes in naming UI components & commands.
  • Loading branch information
Reinmar authored Mar 11, 2018
2 parents 8fcb33c + f56bf04 commit c99780c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tests/manual/list.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ import List from '../../src/list';
ClassicEditor
.create( document.querySelector( '#editor' ), {
plugins: [ Enter, Typing, Heading, Paragraph, Undo, List, Clipboard ],
toolbar: [ 'headings', '|', 'bulletedList', 'numberedList', 'undo', 'redo' ]
toolbar: [ 'heading', '|', 'bulletedList', 'numberedList', 'undo', 'redo' ]
} )
.then( editor => {
window.editor = editor;
Expand Down
2 changes: 1 addition & 1 deletion tests/manual/nestedlists.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ import List from '../../src/list';
ClassicEditor
.create( document.querySelector( '#editor' ), {
plugins: [ Enter, Typing, Heading, Paragraph, Undo, List, Clipboard, Link ],
toolbar: [ 'headings', '|', 'bulletedList', 'numberedList', 'undo', 'redo' ]
toolbar: [ 'heading', '|', 'bulletedList', 'numberedList', 'undo', 'redo' ]
} )
.then( editor => {
window.editor = editor;
Expand Down

0 comments on commit c99780c

Please sign in to comment.