diff options
Diffstat (limited to 'tests/unit/draggable/draggable_core.js')
-rw-r--r-- | tests/unit/draggable/draggable_core.js | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/tests/unit/draggable/draggable_core.js b/tests/unit/draggable/draggable_core.js index def1526e5..de88b1947 100644 --- a/tests/unit/draggable/draggable_core.js +++ b/tests/unit/draggable/draggable_core.js @@ -344,7 +344,7 @@ test( "ui-draggable-handle managed correctly in nested draggables", function() { // http://bugs.jqueryui.com/ticket/7772 // when css 'right' is set, element resizes on drag test( "setting right/bottom css shouldn't cause resize", function() { - expect( 3 ); + expect( 4 ); var finalOffset, element = $( "#draggable3" ), @@ -362,7 +362,8 @@ test( "setting right/bottom css shouldn't cause resize", function() { closeEnough( element.width(), origWidth, 1, "element retains width" ); closeEnough( element.height(), origHeight, 1, "element retains height" ); - deepEqual( finalOffset, origOffset, "element moves the correct distance" ); + closeEnough( finalOffset.top, origOffset.top, "element moves the correct vertical distance" ); + closeEnough( finalOffset.top, origOffset.top, "element moves the correct horizontal distance" ); }); })( jQuery ); |