Explorar el Código

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

Szymon Kupś hace 8 años
padre
commit
f90653d902
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  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>'
 			);
 		} );