浏览代码

Tests: test description fix.

Szymon Cofalik 9 年之前
父节点
当前提交
e0aa391324
共有 1 个文件被更改,包括 1 次插入1 次删除
  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;
 			} );
 		} );