@@ -333,8 +333,8 @@ QUnit.module('Options', {
333333 assert . equal ( this . instance . _diagramInstance . model . units , 0 ) ;
334334 } ) ;
335335 test ( 'should change pageSize property' , function ( assert ) {
336- assert . equal ( this . instance . _diagramInstance . model . pageSize . width , 8391 ) ;
337- assert . equal ( this . instance . _diagramInstance . model . pageSize . height , 11906 ) ;
336+ assert . equal ( this . instance . _diagramInstance . model . pageSize . width , 8400 ) ;
337+ assert . equal ( this . instance . _diagramInstance . model . pageSize . height , 11910 ) ;
338338 this . instance . option ( 'pageSize' , { width : 3 , height : 5 } ) ;
339339 assert . equal ( this . instance . _diagramInstance . model . pageSize . width , 4320 ) ;
340340 assert . equal ( this . instance . _diagramInstance . model . pageSize . height , 7200 ) ;
@@ -351,8 +351,8 @@ QUnit.module('Options', {
351351 assert . equal ( this . onOptionChanged . getCalls ( ) . length , 3 ) ; // +hasChanges
352352 } ) ;
353353 test ( 'should change pageSize object property' , function ( assert ) {
354- assert . equal ( this . instance . _diagramInstance . model . pageSize . width , 8391 ) ;
355- assert . equal ( this . instance . _diagramInstance . model . pageSize . height , 11906 ) ;
354+ assert . equal ( this . instance . _diagramInstance . model . pageSize . width , 8400 ) ;
355+ assert . equal ( this . instance . _diagramInstance . model . pageSize . height , 11910 ) ;
356356 assert . equal ( this . instance . _diagramInstance . settings . pageSizeItems . length , 11 ) ;
357357 this . instance . option ( 'pageSize' , { width : 3 , height : 5 , items : [ { width : 3 , height : 5 , text : 'A10' } ] } ) ;
358358 assert . equal ( this . instance . _diagramInstance . model . pageSize . width , 4320 ) ;
@@ -752,8 +752,8 @@ QUnit.module('Options (initially set)', {
752752
753753 assert . ok ( instance . _diagramInstance . settings . readOnly ) ;
754754 assert . equal ( instance . _diagramInstance . model . pageColor , - 1 ) ; // FFFFFF
755- assert . equal ( instance . _diagramInstance . model . pageSize . width , 8391 ) ;
756- assert . equal ( instance . _diagramInstance . model . pageSize . height , 11906 ) ;
755+ assert . equal ( instance . _diagramInstance . model . pageSize . width , 8400 ) ;
756+ assert . equal ( instance . _diagramInstance . model . pageSize . height , 11910 ) ;
757757 assert . ok ( instance . _diagramInstance . settings . snapToGrid ) ;
758758 } ) ;
759759} ) ;
0 commit comments