Ver Fonte

Tests: test description fix.

Szymon Cofalik há 9 anos atrás
pai
commit
e0aa391324
1 ficheiros alterados com 1 adições e 1 exclusões
  1. 1 1
      packages/ckeditor5-engine/tests/treemodel/textproxy.js

+ 1 - 1
packages/ckeditor5-engine/tests/treemodel/textproxy.js

@@ -81,7 +81,7 @@ describe( 'TextProxy', () => {
 				expect( textFragment.getAttribute( 'foo' ) ).to.equal( 'bar' );
 			} );
 
-			it( 'should return null if text fragment does not have given attribute', () => {
+			it( 'should return undefined if text fragment does not have given attribute', () => {
 				expect( textFragment.getAttribute( 'bar' ) ).to.be.undefined;
 			} );
 		} );