浏览代码

Fixed failing tests in dev-utils - order of nodes changed.

Szymon Kupś 8 年之前
父节点
当前提交
f90653d902
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      packages/ckeditor5-engine/tests/dev-utils/model.js

+ 1 - 1
packages/ckeditor5-engine/tests/dev-utils/model.js

@@ -244,7 +244,7 @@ describe( 'model test utils', () => {
 
 			expect( stringify( root ) ).to.equal(
 				// Because of https://github.com/ckeditor/ckeditor5-engine/issues/562 attributes are not merged
-				'<$text bold="true">foo</$text>bar<$text italic="true"><$text bold="true">bom</$text></$text>' +
+				'<$text bold="true">foo</$text>bar<$text bold="true"><$text italic="true">bom</$text></$text>' +
 				'<a><$text bold="true" underline="true">pom</$text></a>'
 			);
 		} );