Browse Source

Changed name in document tests.

Szymon Cofalik 10 years ago
parent
commit
33dcde5df5
1 changed files with 1 additions and 1 deletions
  1. 1 1
      packages/ckeditor5-utils/tests/document/document.js

+ 1 - 1
packages/ckeditor5-utils/tests/document/document.js

@@ -31,7 +31,7 @@ describe( 'Document', () => {
 	} );
 
 	describe( 'constructor', () => {
-		it( 'should create Document with no data', () => {
+		it( 'should create Document with no data and empty graveyard', () => {
 			expect( document ).to.have.property( 'roots' ).that.is.instanceof( Map );
 			expect( document.roots.size ).to.equal( 1 );
 			expect( document._graveyard ).to.be.instanceof( RootElement );