@@ -1159,9 +1159,7 @@ QUnit.test( "#6817: auto scroll goes double distance when dragging", function( a
11591159 scroll : true ,
11601160 stop : function ( e , ui ) {
11611161 assert . equal ( ui . offset . top , newY , "offset of item matches pointer position after scroll" ) ;
1162-
1163- // TODO: fix IE8 testswarm IFRAME positioning bug so assert.close can be turned back to equal
1164- assert . close ( ui . offset . top - offsetBefore . top , distance , 1 , "offset of item only moves expected distance after scroll" ) ;
1162+ assert . equal ( ui . offset . top - offsetBefore . top , distance , 1 , "offset of item only moves expected distance after scroll" ) ;
11651163 }
11661164 } ) ,
11671165 scrollSensitivity = element . draggable ( "option" , "scrollSensitivity" ) ,
@@ -1217,9 +1215,8 @@ QUnit.test( "snap, snapMode, and snapTolerance", function( assert ) {
12171215 moves : 1
12181216 } ) ;
12191217
1220- // TODO: fix IE8 testswarm IFRAME positioning bug so assert.close can be turned back to equal
1221- assert . close ( element . offset ( ) . left , newX , 1 , "doesn't snap outside the snapTolerance" ) ;
1222- assert . close ( element . offset ( ) . top , newY , 1 , "doesn't snap outside the snapTolerance" ) ;
1218+ assert . equal ( element . offset ( ) . left , newX , 1 , "doesn't snap outside the snapTolerance" ) ;
1219+ assert . equal ( element . offset ( ) . top , newY , 1 , "doesn't snap outside the snapTolerance" ) ;
12231220
12241221 newX += 3 ;
12251222
0 commit comments