8
0
Pārlūkot izejas kodu

Tests: changed problematic test (see #85).

Szymon Cofalik 9 gadi atpakaļ
vecāks
revīzija
5caf799e71
1 mainītis faili ar 2 papildinājumiem un 2 dzēšanām
  1. 2 2
      packages/ckeditor5-ui/tests/template.js

+ 2 - 2
packages/ckeditor5-ui/tests/template.js

@@ -556,7 +556,7 @@ describe( 'Template', () => {
 					'class': 'parent'
 				},
 				children: [
-					'Children: ',
+					'Children:',
 					{
 						tag: 'span',
 						attributes: {
@@ -566,7 +566,7 @@ describe( 'Template', () => {
 				]
 			} ).apply( el );
 
-			expect( normalizeHtml( el.outerHTML ) ).to.equal( '<div class="parent">Children: <span class="child"></span></div>' );
+			expect( normalizeHtml( el.outerHTML ) ).to.equal( '<div class="parent">Children:<span class="child"></span></div>' );
 		} );
 
 		it( 'should work for deep DOM structure', () => {