|
|
@@ -9,7 +9,6 @@
|
|
|
|
|
|
import AttributeElement from '/ckeditor5/engine/treeview/attributeelement.js';
|
|
|
import Element from '/ckeditor5/engine/treeview/element.js';
|
|
|
-import { DEFAULT_PRIORITY } from '/ckeditor5/engine/treeview/attributeelement.js';
|
|
|
import { parse } from '/tests/engine/_utils/view.js';
|
|
|
|
|
|
describe( 'AttributeElement', () => {
|
|
|
@@ -20,7 +19,7 @@ describe( 'AttributeElement', () => {
|
|
|
expect( el ).to.be.an.instanceof( AttributeElement );
|
|
|
expect( el ).to.be.an.instanceof( Element );
|
|
|
expect( el ).to.have.property( 'name' ).that.equals( 'strong' );
|
|
|
- expect( el ).to.have.property( 'priority' ).that.equals( DEFAULT_PRIORITY );
|
|
|
+ expect( el ).to.have.property( 'priority' ).that.equals( AttributeElement.DEFAULT_PRIORITY );
|
|
|
} );
|
|
|
} );
|
|
|
|