Skip to content

Commit

Permalink
Internal (engine): Minor code style tweaks.
Browse files Browse the repository at this point in the history
  • Loading branch information
mlewand committed May 25, 2021
1 parent fb2c64e commit 3627a6b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3519,6 +3519,7 @@ describe( 'downcast converters', () => {
priority: 0
};
const element = createViewElementFromHighlightDescriptor( viewWriter, descriptor );

expect( element.priority ).to.equal( 0 );
} );
} );
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -125,6 +125,7 @@ describe( 'DowncastWriter', () => {

it( 'should pass priority 0', () => {
const element = writer.createAttributeElement( 'foo', attributes, { priority: 0 } );

expect( element.priority ).to.equal( 0 );
} );
} );
Expand Down

0 comments on commit 3627a6b

Please sign in to comment.