@@ -269,7 +269,7 @@ QUnit.test('[ID3] igLayoutManager flow layout', function (assert) {
269269 assert . notOk ( layoutManagerElement . hasClass ( 'ig-layout' ) , 'The ig-layout class was not removed on destroy,' ) ;
270270 assert . notOk ( layoutManagerElement . hasClass ( 'ig-layout-flow' ) , 'The ig-layout class was not removed on destroy,' ) ;
271271 assert . equal ( layoutManagerElement . children ( ) . length , 0 , 'The items were not correctly cleared on destroy.' ) ;
272- layoutManagerElement . append ( '<div / ><div / ><div / ><div / ><div / ><div / >' ) . igLayoutManager ( {
272+ layoutManagerElement . append ( '<div></div ><div></div ><div></div ><div></div ><div></div ><div></div >' ) . igLayoutManager ( {
273273 layoutMode : "flow"
274274 } ) ;
275275 assert . equal ( layoutManagerElement . children ( ) . length , 6 , 'The five items were not rendered in the flow container.' ) ;
@@ -351,7 +351,7 @@ QUnit.test('[ID4] igLayoutManager vertical layout', function (assert) {
351351 assert . notOk ( layoutManagerElement . hasClass ( 'ig-layout' ) , 'The ig-layout class was not removed on destroy,' ) ;
352352 assert . notOk ( layoutManagerElement . hasClass ( 'ig-layout-vertical' ) , 'The ig-layout class was not removed on destroy,' ) ;
353353 assert . equal ( layoutManagerElement . children ( ) . length , 0 , 'The items were not correctly cleared on destroy.' ) ;
354- layoutManagerElement . append ( '<div / ><div / ><div / ><div / ><div / ><div / >' ) . igLayoutManager ( {
354+ layoutManagerElement . append ( '<div></div ><div></div ><div></div ><div></div ><div></div ><div></div >' ) . igLayoutManager ( {
355355 layoutMode : "vertical"
356356 } ) ;
357357 assert . equal ( layoutManagerElement . children ( ) . length , 6 , 'The five items were not rendered in the vertical container.' ) ;
0 commit comments