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 #36 from ckeditor/i/6091
Browse files Browse the repository at this point in the history
Internal: Adjusted the code to changes required for replacing the `StylesProcessor` singleton with an instance of the class. See ckeditor/ckeditor5#6091.
  • Loading branch information
Reinmar committed Mar 3, 2020
2 parents 48a95ca + 175caac commit 7da0252
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/editorwatchdog.js
Expand Up @@ -937,7 +937,7 @@ describe( 'EditorWatchdog', () => {
constructor( sourceElements, config ) {
super( config );

this.data.processor = new HtmlDataProcessor();
this.data.processor = new HtmlDataProcessor( this.editing.view.document );

// Create a root for each source element.
for ( const rootName of Object.keys( sourceElements ) ) {
Expand Down

0 comments on commit 7da0252

Please sign in to comment.